* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1261ff;
    --primary-dark: #0847c7;
    --secondary: #0b172a;
    --text: #172033;
    --muted: #687386;
    --light: #f5f8fc;
    --white: #ffffff;
    --border: #e5eaf2;
    --success: #16a66a;
    --shadow: 0 15px 45px rgba(14, 30, 55, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Vazirmatn", Tahoma, Arial, sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* ================= HEADER ================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(229, 234, 242, 0.8);
    backdrop-filter: blur(12px);
}

.header-container {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--primary), #4f8cff);
    color: white;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(18, 97, 255, 0.25);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text strong {
    font-size: 21px;
    color: var(--secondary);
}

.logo-text small {
    color: var(--muted);
    font-size: 11px;
    margin-top: 4px;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar a {
    position: relative;
    color: #4c586b;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.navbar a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    border-radius: 10px;
    background: var(--primary);
    transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
    color: var(--primary);
}

.navbar a:hover::after,
.navbar a.active::after {
    width: 100%;
}

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.4;
}

.header-contact span {
    color: var(--muted);
    font-size: 11px;
}

.header-contact a {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 700;
    direction: ltr;
}

.menu-btn {
    display: none;
    border: 0;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
    color: var(--secondary);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(330px, 85%);
    height: 100vh;
    z-index: 2000;
    padding: 90px 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: white;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12);
    transition: 0.4s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--text);
}

.close-menu {
    position: absolute;
    top: 20px;
    left: 22px;
    border: 0;
    background: transparent;
    font-size: 34px;
    cursor: pointer;
}


/* ================= HERO ================= */

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 20%, rgba(18, 97, 255, 0.08), transparent 30%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.hero-container {
    min-height: 650px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.hero-content {
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    margin-bottom: 22px;
    border-radius: 50px;
    background: #eaf1ff;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(38px, 5vw, 65px);
    line-height: 1.25;
    letter-spacing: -1.5px;
    color: var(--secondary);
    margin-bottom: 24px;
}

.hero h1 span {
    display: block;
    color: var(--primary);
}

.hero p {
    max-width: 590px;
    color: var(--muted);
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    min-height: 52px;
    padding: 0 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: 0.3s;
    
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 25px rgba(18, 97, 255, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px)  rotate(5deg);
    box-shadow: 0 14px 30px rgba(18, 97, 255, 0.28);
}

.btn-outline {
    border-color: var(--border);
    color: var(--secondary);
    background: white;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-features {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 45px;
}

.hero-feature {
    display: flex;
    flex-direction: column;
}

.hero-feature strong {
    font-size: 23px;
    color: var(--secondary);
}

.hero-feature span {
    font-size: 11px;
    color: var(--muted);
}

.hero-image {
    min-height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.printer-card {
    width: 360px;
    position: relative;
    filter: drop-shadow(0 30px 35px rgba(13, 35, 75, 0.18));
}

.printer-top {
    width: 280px;
    height: 35px;
    margin: auto;
    border-radius: 15px 15px 4px 4px;
    background: #dbe2ec;
}

.printer-body {
    height: 230px;
    padding: 28px;
    position: relative;
    border-radius: 12px;
    background: linear-gradient(145deg, #f7f9fc, #d9e0ea);
    border: 1px solid #cdd6e2;
}

.printer-screen {
    width: 85px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #0b172a;
    color: #4f8cff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.printer-paper {
    width: 230px;
    height: 80px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    border-radius: 8px 8px 0 0;
    background: white;
    border: 1px solid #d7dee8;
}

.printer-button {
    position: absolute;
    top: 35px;
    right: 30px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(18, 97, 255, 0.08);
}

.printer-base {
    width: 390px;
    height: 45px;
    margin: -3px auto 0;
    border-radius: 0 0 16px 16px;
    background: #c7d0dc;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border-radius: 14px;
    background: white;
    box-shadow: var(--shadow);
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    font-size: 12px;
}

.floating-card small {
    color: var(--muted);
    font-size: 10px;
}

.floating-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #eaf1ff;
    color: var(--primary);
}

.floating-card-one {
    top: 75px;
    right: 5px;
}

.floating-card-two {
    bottom: 65px;
    left: 0;
}


/* ================= SECTIONS ================= */

.services-section,
.process-section {
    padding: 100px 0;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-label,
.cta-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}

.section-heading h2,
.why-content h2 {
    color: var(--secondary);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.45;
    margin-bottom: 15px;
}

.section-heading h2 span,
.why-content h2 span {
    color: var(--primary);
}

.section-heading p {
    color: var(--secondary);
    font-size: 20px;
}


/* ================= SERVICES ================= */

.services-section {
    background: darkturquoise;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: white;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(18, 97, 255, 0.25);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #edf3ff;
    font-size: 26px;
}

.service-card h3 {
    color: var(--secondary);
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card p {
    min-height: 65px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.service-card a {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
}


/* ================= WHY ================= */

.why-section {
    padding: 100px 0;
    background: var(--light);
}

.why-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.why-image {
    min-height: 480px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    background:
        radial-gradient(circle at 50% 40%, rgba(18, 97, 255, 0.25), transparent 40%),
        linear-gradient(145deg, #0b172a, #172b4a);
    overflow: hidden;
}

.why-image::before {
    content: "";
    position: absolute;
    width: 270px;
    height: 270px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.why-image::after {
    content: "ARKA";
    position: absolute;
    font-size: 80px;
    font-weight: 800;
    letter-spacing: 8px;
    color: rgba(255, 255, 255, 0.05);
}

.experience-box {
    position: relative;
    z-index: 2;
    width: 190px;
    height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
    text-align: center;
}

.experience-box strong {
    color: var(--primary);
    font-size: 52px;
    line-height: 1;
}

.experience-box span {
    color: var(--secondary);
    font-size: 12px;
    margin-top: 8px;
}

.tools-box {
    position: absolute;
    right: 30px;
    bottom: 30px;
    padding: 15px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    font-size: 23px;
    letter-spacing: 5px;
}

.why-content > p {
    color: var(--muted);
    font-size: 14px;
    line-height: 2;
    margin-bottom: 30px;
}

.why-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 30px;
}

.why-item {
    display: flex;
    gap: 12px;
}

.why-item > span {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e6f8f0;
    color: var(--success);
    font-size: 13px;
    font-weight: 700;
}

.why-item strong {
    display: block;
    font-size: 14px;
    color: var(--secondary);
}

.why-item p {
    color: var(--muted);
    font-size: 11px;
    margin-top: 3px;
}


/* ================= PROCESS ================= */

.process-section {
    background: darkturquoise;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-item {
    position: relative;
    text-align: center;
    padding: 20px;
}

.process-number {
    color: #e6ebf3;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: -15px;
}

.process-icon {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: #edf3ff;
    font-size: 28px;
}

.process-item h3 {
    color: var(--secondary);
    font-size: 16px;
    margin-bottom: 8px;
}

.process-item p {
    color: var(--muted);
    font-size: 12px;
}


/* ================= CTA ================= */

.cta-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #0b172a, #12376d);
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-label {
    color: #74a4ff;
}

.cta-container h2 {
    color: white;
    font-size: clamp(25px, 4vw, 37px);
    line-height: 1.5;
}

.cta-container h2 strong {
    color: #5e9bff;
}

.cta-container p {
    color: #b9c5d8;
    font-size: 13px;
}

.btn-light {
    background: white;
    color: var(--secondary);
    white-space: nowrap;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}


/* ================= FOOTER ================= */

.footer {
    background: #07101f;
    color: white;
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 55px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo strong,
.footer-logo small {
    display: block;
}

.footer-logo strong {
    font-size: 20px;
}

.footer-logo small {
    color: #8190a7;
    font-size: 10px;
}

.footer-about p {
    max-width: 300px;
    color: #8190a7;
    font-size: 12px;
    line-height: 2;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h3 {
    margin-bottom: 10px;
    font-size: 15px;
}

.footer-column a,
.footer-column p {
    color: #8190a7;
    font-size: 12px;
    transition: 0.3s;
}

.footer-column a:hover {
    color: white;
    padding-right: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom .container {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    color: #65738a;
    font-size: 10px;
}


/* ================= FLOATING PHONE ================= */

.floating-phone {
    position: fixed;
    left: 25px;
    bottom: 25px;
    z-index: 900;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 22px;
    box-shadow: 0 10px 25px rgba(18, 97, 255, 0.35);
    transition: 0.3s;
}


.floating-phone:hover {
    transform: scale(1.08);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1050px) {

    .navbar {
        gap: 18px;
    }

    .header-contact {
        display: none;
    }

    .hero-container {
        gap: 30px;
    }

    .why-container {
        gap: 45px;
    }

}


@media (max-width: 850px) {

    .navbar {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 700px;
        margin: auto;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-features {
        justify-content: center;
    }

    .hero-image {
        min-height: 400px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-container {
        grid-template-columns: 1fr;
    }

    .why-image {
        max-width: 600px;
        width: 100%;
        margin: auto;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 600px) {

    .header-container {
        min-height: 70px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .logo-text strong {
        font-size: 18px;
    }

    .hero-container {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .hero h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-features {
        gap: 20px;
    }

    .hero-feature strong {
        font-size: 19px;
    }

    .hero-image {
        min-height: 350px;
        transform: scale(0.82);
        margin: -20px 0;
    }

    .services-section,
    .why-section,
    .process-section {
        padding: 70px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card p {
        min-height: auto;
    }

    .why-image {
        min-height: 360px;
    }

    .experience-box {
        width: 150px;
        height: 150px;
    }

    .experience-box strong {
        font-size: 40px;
    }

    .why-list {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-container .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom .container {
        flex-direction: column;
        justify-content: center;
        padding: 15px 0;
    }

    .floating-phone {
        left: 18px;
        bottom: 18px;
        width: 50px;
        height: 50px;
    }

}
/* =========================
   JAVASCRIPT ANIMATIONS
========================= */

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.header.scrolled {
    box-shadow: 0 8px 25px rgba(14, 30, 55, 0.08);
}

.btn.clicked {
    transform: scale(0.97);
}
/* =========================
   REQUEST PAGE
========================= */

.page-header {
    padding: 80px 0 70px;
    text-align: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(18, 97, 255, 0.08), transparent 30%),
        linear-gradient(180deg, #f6f9ff, #ffffff);
}

.page-header h1 {
    color: var(--secondary);
    font-size: clamp(30px, 5vw, 48px);
    margin-bottom: 12px;
}

.page-header p {
    max-width: 620px;
    margin: 0 auto 20px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--muted);
    font-size: 12px;
}

.breadcrumb a {
    color: var(--primary);
}

.request-section {
    padding: 90px 0;
    background: #f7f9fc;
}

.request-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 30px;
    align-items: start;
}

.request-form-wrapper {
    padding: 35px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(20, 35, 60, 0.05);
}

.form-title {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.form-title > span {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #edf3ff;
    color: var(--primary);
    font-weight: 800;
}

.form-title h2 {
    color: var(--secondary);
    font-size: 21px;
}

.form-title p {
    color: var(--muted);
    font-size: 11px;
}

.form-section {
    padding: 25px 0;
    border-bottom: 1px solid var(--border);
}

.form-section:last-of-type {
    border-bottom: 0;
}

.form-section > h3 {
    margin-bottom: 20px;
    color: var(--secondary);
    font-size: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #344054;
    font-size: 12px;
    font-weight: 600;
}

.form-group label span {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #dce2eb;
    border-radius: 10px;
    outline: none;
    background: white;
    color: var(--text);
    font-size: 12px;
    transition: 0.25s;
}

.form-group input,
.form-group select {
    height: 48px;
    padding: 0 14px;
}

.form-group textarea {
    padding: 13px 14px;
    resize: vertical;
    min-height: 130px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(18, 97, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a1aab8;
}


/* Problem options */

.problem-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.problem-option {
    position: relative;
    cursor: pointer;
}

.problem-option input {
    position: absolute;
    opacity: 0;
}

.problem-option span {
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 9px;
    color: #526074;
    font-size: 11px;
    text-align: center;
    transition: 0.25s;
}

.problem-option input:checked + span {
    border-color: var(--primary);
    background: #edf3ff;
    color: var(--primary);
    font-weight: 600;
}


/* Upload */

.upload-box {
    position: relative;
    min-height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #d6deea;
    border-radius: 15px;
    background: #fafcff;
    overflow: hidden;
    transition: 0.25s;
}

.upload-box:hover {
    border-color: var(--primary);
    background: #f5f8ff;
}

.upload-box input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    pointer-events: none;
}

.upload-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border-radius: 13px;
    background: #edf3ff;
    font-size: 22px;
}

.upload-content strong {
    color: var(--secondary);
    font-size: 13px;
}

.upload-content span,
.upload-content small {
    color: var(--muted);
    font-size: 10px;
}

.upload-content small {
    margin-top: 4px;
}


/* Agreement */

.form-agreement {
    margin: 25px 0;
}

.form-agreement label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.form-agreement input {
    width: 17px;
    height: 17px;
    accent-color: var(--primary);
}

.form-agreement span {
    color: var(--muted);
    font-size: 11px;
}


/* Submit */

.submit-btn {
    width: 100%;
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border: 0;
    border-radius: 12px;
    background: var(--primary);
    color: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(18, 97, 255, 0.2);
}

.submit-btn strong {
    font-size: 18px;
}


/* Sidebar */

.request-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    padding: 28px;
    border-radius: 18px;
    background: #0b172a;
    color: white;
}

.sidebar-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 25px;
}

.sidebar-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.sidebar-card > p {
    color: #aab7ca;
    font-size: 11px;
    line-height: 2;
    margin-bottom: 25px;
}

.sidebar-feature {
    display: flex;
    gap: 10px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-feature > span {
    width: 27px;
    height: 27px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(22, 166, 106, 0.15);
    color: #52d99b;
}

.sidebar-feature strong,
.sidebar-feature small {
    display: block;
}

.sidebar-feature strong {
    font-size: 11px;
}

.sidebar-feature small {
    color: #8795a9;
    font-size: 9px;
    margin-top: 3px;
}

.sidebar-contact {
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: white;
}

.sidebar-contact span {
    display: block;
    color: var(--muted);
    font-size: 10px;
}

.sidebar-contact strong {
    display: block;
    color: var(--secondary);
    font-size: 13px;
    margin: 5px 0 15px;
}

.sidebar-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    direction: rtl;
}


/* Success Modal */

.success-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(4, 13, 27, 0.7);
    backdrop-filter: blur(6px);
}

.success-modal.active {
    display: flex;
}

.success-box {
    position: relative;
    width: min(430px, 100%);
    padding: 40px 30px;
    border-radius: 22px;
    background: white;
    text-align: center;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.success-close {
    position: absolute;
    top: 15px;
    left: 18px;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 27px;
    cursor: pointer;
}

.success-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #e8f8f1;
    color: var(--success);
    font-size: 34px;
    font-weight: 800;
}

.success-box h2 {
    color: var(--secondary);
    font-size: 22px;
    margin-bottom: 8px;
}

.success-box > p {
    color: var(--muted);
    font-size: 12px;
}

.tracking-box {
    margin: 25px 0 10px;
    padding: 18px;
    border-radius: 12px;
    background: #f3f6fb;
}

.tracking-box span {
    display: block;
    color: var(--muted);
    font-size: 10px;
}

.tracking-box strong {
    display: block;
    margin-top: 5px;
    color: var(--primary);
    font-size: 23px;
    letter-spacing: 2px;
    direction: ltr;
}

.success-box > small {
    color: var(--muted);
    font-size: 9px;
}

.modal-button {
    width: 100%;
    height: 48px;
    margin-top: 25px;
    border: 0;
    border-radius: 10px;
    background: var(--primary);
    color: white;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
}


/* =========================
   REQUEST RESPONSIVE
========================= */

@media (max-width: 900px) {

    .request-container {
        grid-template-columns: 1fr;
    }

    .request-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .problem-options {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .page-header {
        padding: 55px 0;
    }

    .request-section {
        padding: 50px 0;
    }

    .request-form-wrapper {
        padding: 22px 17px;
        border-radius: 15px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .problem-options {
        grid-template-columns: 1fr 1fr;
    }

    .request-sidebar {
        display: flex;
    }

    .sidebar-card,
    .sidebar-contact {
        padding: 22px;
    }

}
.jalali-date-wrapper {
    position: relative;
}

.jalali-date-wrapper input {
    padding-left: 45px !important;
}

.date-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 17px;
}
/* =========================
   SERVICES PAGE
========================= */

.services-page {
    padding: 90px 0;
    background: #f7f9fc;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-detail-card {
    position: relative;
    padding: 32px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.service-detail-card:hover {
    transform: translateY(-7px);
    border-color: rgba(18, 97, 255, 0.25);
    box-shadow: var(--shadow);
}

.service-detail-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 17px;
    background: #edf3ff;
    font-size: 29px;
}

.service-number {
    position: absolute;
    top: 25px;
    left: 25px;
    color: #e8edf5;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.service-detail-card h2 {
    color: var(--secondary);
    font-size: 18px;
    margin-bottom: 12px;
}

.service-detail-card > p {
    min-height: 105px;
    color: var(--muted);
    font-size: 12px;
    line-height: 2;
}

.service-detail-card ul {
    list-style: none;
    margin: 20px 0;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.service-detail-card li {
    margin: 8px 0;
    color: #526074;
    font-size: 11px;
}

.service-detail-card li::first-letter {
    color: var(--success);
}

.service-detail-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}

.service-detail-button:hover {
    gap: 12px;
}


/* =========================
   BRANDS
========================= */

.brands-section {
    padding: 100px 0;
    background: white;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

/* کارت برندها */
.brand-item {
    min-height: 110px;
    padding: 15px;
    border: 1px solid #dbe4f0;
    border-radius: 12px;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    box-sizing: border-box;
    overflow: hidden;
}

/* همه تصاویر برندها یک اندازه */
.brand-item img {
    width: 150px;
    height: 90px;
    object-fit: contain;
    display: block;
}

/* نام برند */
.brand-item span {
    font-size: 15px;
    font-weight: 600;
    color: #334155;
}


.brand-item:hover {
    color: var(--primary);
    border-color: rgba(18, 97, 255, 0.3);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}



/* =========================
   SERVICES RESPONSIVE
========================= */

@media (max-width: 900px) {

    .services-page-grid {
        grid-template-columns: 1fr 1fr;
    }

    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}



@media (max-width: 600px) {

    .services-page {
        padding: 55px 0;
    }

    .services-page-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        padding: 25px;
    }

    .service-detail-card > p {
        min-height: auto;
    }

    .brands-section {
        padding: 65px 0;
    }

    .brands-grid {
        grid-template-columns: 1fr 1fr;
    }

    .brand-item {
        min-height: 70px;
        font-size: 15px;
    }

}
/* =========================
   ABOUT PAGE
========================= */

.about-intro {
    padding: 100px 0;
    background: #fff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    margin: 15px 0 25px;
    color: var(--secondary);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.5;
}

.about-content h2 span {
    color: var(--primary);
}

.about-content p {
    margin-bottom: 15px;
    color: var(--muted);
    font-size: 13px;
    line-height: 2.2;
}

.about-content .btn {
    margin-top: 20px;
}

.about-visual {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card-main {
    width: 310px;
    height: 310px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 35px;
    background:
        linear-gradient(145deg, #edf3ff, #f8fbff);
    border: 1px solid #dce7fa;
    box-shadow: 0 25px 60px rgba(18, 50, 100, 0.08);
}

.about-big-icon {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 30px;
    background: white;
    box-shadow: 0 15px 35px rgba(18, 50, 100, 0.08);
    font-size: 55px;
}

.about-card-main strong {
    color: var(--secondary);
    font-size: 18px;
}

.about-card-main > span {
    margin-top: 6px;
    color: var(--muted);
    font-size: 11px;
}

.about-stat {
    position: absolute;
    min-width: 105px;
    padding: 15px;
    border-radius: 15px;
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 15px 35px rgba(18, 40, 80, 0.08);
    text-align: center;
}

.about-stat strong {
    display: block;
    color: var(--primary);
    font-size: 22px;
}

.about-stat span {
    color: var(--muted);
    font-size: 10px;
}

.about-stat-one {
    top: 35px;
    right: 15px;
}

.about-stat-two {
    bottom: 50px;
    left: 5px;
}

.about-stat-three {
    bottom: 5px;
    right: 80px;
}


/* =========================
   VALUES
========================= */

.values-section {
    padding: 100px 0;
    background: #f7f9fc;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: white;
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.value-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 14px;
    background: #edf3ff;
    font-size: 25px;
}

.value-card h3 {
    color: var(--secondary);
    font-size: 15px;
    margin-bottom: 10px;
}

.value-card p {
    color: var(--muted);
    font-size: 11px;
    line-height: 2;
}


/* =========================
   ABOUT PROCESS
========================= */

.about-process {
    padding: 100px 0;
    background: white;
}

.about-process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
}

.about-process-item {
    flex: 1;
    text-align: center;
}

.process-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 20px;
    font-weight: 800;
}

.about-process-item h3 {
    color: var(--secondary);
    font-size: 14px;
    margin-bottom: 10px;
}

.about-process-item p {
    color: var(--muted);
    font-size: 10px;
    line-height: 2;
}

.about-process-line {
    width: 55px;
    height: 2px;
    margin-top: 30px;
    background: #e1e7f0;
}


/* =========================
   CTA PHONE
========================= */

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-phone {
    color: white;
    font-size: 13px;
    font-weight: 700;
}


/* =========================
   ABOUT RESPONSIVE
========================= */

@media (max-width: 900px) {

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        min-height: 380px;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-process-grid {
        flex-wrap: wrap;
    }

    .about-process-item {
        flex: 0 0 calc(50% - 30px);
    }

    .about-process-line {
        display: none;
    }

}


@media (max-width: 600px) {

    .about-intro,
    .values-section,
    .about-process {
        padding: 60px 0;
    }

    .about-visual {
        min-height: 340px;
    }

    .about-card-main {
        width: 250px;
        height: 250px;
    }

    .about-big-icon {
        width: 85px;
        height: 85px;
        font-size: 40px;
    }

    .about-stat {
        min-width: 85px;
        padding: 10px;
    }

    .about-stat-one {
        top: 20px;
        right: 0;
    }

    .about-stat-two {
        bottom: 35px;
        left: 0;
    }

    .about-stat-three {
        bottom: 0;
        right: 65px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-process-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-process-item {
        flex: auto;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-phone {
        text-align: center;
    }

}
/* =========================
   CONTACT PAGE
========================= */

.contact-section {
    padding: 70px 0 30px;
    background: #f7f9fc;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 17px;
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(18, 97, 255, 0.25);
}

.contact-icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #edf3ff;
    font-size: 23px;
}

.contact-card span,
.contact-card strong,
.contact-card small {
    display: block;
}

.contact-card span {
    color: var(--muted);
    font-size: 10px;
    margin-bottom: 5px;
}

.contact-card strong {
    color: var(--secondary);
    font-size: 14px;
}

.contact-card small {
    color: var(--muted);
    font-size: 9px;
    margin-top: 5px;
}


/* =========================
   CONTACT MAIN
========================= */

.contact-main {
    padding: 70px 0 100px;
    background: #f7f9fc;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: start;
}

.contact-form-box {
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: white;
}

.contact-heading {
    text-align: right;
    margin-bottom: 30px;
}

.contact-heading h2 {
    margin: 12px 0;
}

.contact-heading p {
    margin: 0;
}


/* =========================
   MAP
========================= */

.map-box {
    min-height: 390px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: white;
}

.map-placeholder {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            45deg,
            #eef2f7 25%,
            transparent 25%
        ),
        linear-gradient(
            -45deg,
            #eef2f7 25%,
            transparent 25%
        ),
        linear-gradient(
            45deg,
            transparent 75%,
            #eef2f7 75%
        ),
        linear-gradient(
            -45deg,
            transparent 75%,
            #eef2f7 75%
        );
    background-size: 45px 45px;
    background-position:
        0 0,
        0 22px,
        22px -22px,
        -22px 0;
    text-align: center;
}

.map-pin {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 15px 30px rgba(20, 40, 70, 0.12);
    font-size: 32px;
}

.map-placeholder strong {
    color: var(--secondary);
    font-size: 17px;
}

.map-placeholder span {
    margin-top: 7px;
    color: var(--muted);
    font-size: 11px;
}


/* =========================
   CONTACT SIDE
========================= */

.contact-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-side-card {
    padding: 25px;
    border-radius: 18px;
    background: #0b172a;
    color: white;
}

.contact-side-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-side-card p {
    color: #aab7ca;
    font-size: 11px;
    line-height: 2;
    margin-bottom: 18px;
}

.contact-side-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    font-weight: 700;
}


/* =========================
   FAQ
========================= */

.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-list details {
    margin-bottom: 12px;
    padding: 0 22px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: white;
}

.faq-list summary {
    padding: 20px 0;
    cursor: pointer;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 600;
}

.faq-list details p {
    padding: 0 0 20px;
    color: var(--muted);
    font-size: 11px;
    line-height: 2;
}


/* =========================
   CONTACT RESPONSIVE
========================= */

@media (max-width: 900px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .contact-section,
    .contact-main,
    .faq-section {
        padding: 50px 0;
    }

    .contact-form-box {
        padding: 22px 17px;
    }

    .contact-card {
        padding: 18px;
    }

    .map-box,
    .map-placeholder {
        min-height: 300px;
    }

}
/* =========================
   TRACKING PAGE
========================= */

.tracking-section {
    padding: 80px 0 100px;
    background: #f7f9fc;
}

.tracking-search-box {
    max-width: 650px;
    margin: 0 auto 35px;
    padding: 40px;
    text-align: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(20, 40, 70, 0.05);
}

.tracking-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border-radius: 18px;
    background: #edf3ff;
    font-size: 28px;
}

.tracking-search-box h2 {
    color: var(--secondary);
    font-size: 24px;
    margin-bottom: 10px;
}

.tracking-search-box > p {
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 28px;
}

.tracking-search-box form {
    text-align: right;
}

.tracking-search-box label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary);
    font-size: 11px;
    font-weight: 600;
}

.tracking-input {
    display: flex;
    gap: 10px;
}

.tracking-input input {
    flex: 1;
    height: 52px;
    padding: 0 18px;
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
    font-family: inherit;
    font-size: 13px;
    direction: ltr;
    text-align: left;
}

.tracking-input input:focus {
    border-color: var(--primary);
}

.tracking-input button {
    width: 125px;
    border: 0;
    border-radius: 10px;
    background: var(--primary);
    color: white;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.tracking-input button:hover {
    transform: translateY(-2px);
}

.tracking-search-box form small {
    display: block;
    margin-top: 9px;
    color: var(--muted);
    font-size: 9px;
    direction: rtl;
}


/* =========================
   TRACKING RESULT
========================= */

.tracking-result {
    max-width: 900px;
    margin: 0 auto;
    padding: 35px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
}

.tracking-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.tracking-result-header span,
.repair-info-grid span {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 10px;
}

.tracking-result-header strong {
    color: var(--secondary);
    font-size: 17px;
    direction: ltr;
    display: block;
}

.status-badge {
    padding: 9px 17px;
    border-radius: 30px;
    background: #fff5dc;
    color: #a36a00;
    font-size: 11px;
    font-weight: 700;
}


/* =========================
   REPAIR INFO
========================= */

.repair-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 25px 0;
    border-bottom: 1px solid var(--border);
}

.repair-info-grid > div {
    padding: 15px;
    border-radius: 12px;
    background: #f7f9fc;
}

.repair-info-grid strong {
    color: var(--secondary);
    font-size: 12px;
}


/* =========================
   TIMELINE
========================= */

.repair-timeline {
    position: relative;
    margin: 35px 0;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    min-height: 85px;
}

.timeline-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 17px;
    top: 37px;
    width: 2px;
    height: 48px;
    background: #e5eaf2;
}

.timeline-icon {
    position: relative;
    z-index: 2;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf0f5;
    color: #8995a8;
    font-size: 12px;
    font-weight: 700;
}

.timeline-item.completed .timeline-icon {
    background: #e9f8ef;
    color: #1b9a55;
}

.timeline-item.current .timeline-icon {
    background: #edf3ff;
    color: var(--primary);
}

.timeline-item strong {
    display: block;
    color: var(--secondary);
    font-size: 13px;
    margin-bottom: 5px;
}

.timeline-item span {
    display: block;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.8;
}


/* =========================
   TRACKING NOTE
========================= */

.tracking-note {
    padding: 20px;
    border-radius: 14px;
    background: #f7f9fc;
}

.tracking-note strong {
    color: var(--secondary);
    font-size: 12px;
}

.tracking-note p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 10px;
    line-height: 2;
}


/* =========================
   HELP
========================= */

.tracking-help {
    max-width: 650px;
    margin: 35px auto 0;
    padding: 25px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: white;
}

.tracking-help h3 {
    color: var(--secondary);
    font-size: 15px;
    margin-bottom: 8px;
}

.tracking-help p {
    color: var(--muted);
    font-size: 11px;
}

.tracking-help a {
    display: inline-block;
    margin-top: 12px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 700px) {

    .tracking-section {
        padding: 50px 0 70px;
    }

    .tracking-search-box {
        padding: 25px 18px;
    }

    .tracking-input {
        flex-direction: column;
    }

    .tracking-input button {
        width: 100%;
        height: 50px;
    }

    .tracking-result {
        padding: 22px 17px;
    }

    .tracking-result-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .repair-info-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 450px) {

    .repair-info-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================
   REPAIR RECEIPT
========================= */

.repair-receipt {
    margin-top: 30px;
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: white;
}


.receipt-success {
    text-align: center;
}


.receipt-success-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #e9f8ef;
    color: #179653;
    font-size: 28px;
    font-weight: 800;
}


.receipt-success h2 {
    color: var(--secondary);
    font-size: 22px;
    margin-bottom: 8px;
}


.receipt-success p {
    color: var(--muted);
    font-size: 11px;
}


/* TRACKING CODE */

.tracking-code-box {
    margin: 30px 0;
    padding: 25px;
    text-align: center;
    border-radius: 16px;
    background: #edf3ff;
}


.tracking-code-box span {
    display: block;
    color: var(--muted);
    font-size: 11px;
    margin-bottom: 10px;
}


.tracking-code-box strong {
    display: block;
    color: var(--primary);
    font-size: 30px;
    letter-spacing: 2px;
    direction: ltr;
}


.tracking-code-box small {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 9px;
}


/* RECEIPT INFO */

.receipt-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}


.receipt-info > div {
    padding: 16px;
    border-radius: 12px;
    background: #f7f9fc;
}


.receipt-info span {
    display: block;
    color: var(--muted);
    font-size: 9px;
    margin-bottom: 7px;
}


.receipt-info strong {
    display: block;
    color: var(--secondary);
    font-size: 11px;
}


/* ACTIONS */

.receipt-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}


.receipt-phone {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}


@media (max-width: 700px) {

    .repair-receipt {
        padding: 22px 16px;
    }


    .receipt-info {
        grid-template-columns: 1fr 1fr;
    }


    .receipt-actions {
        flex-direction: column;
        gap: 15px;
    }

}


@media (max-width: 450px) {

    .receipt-info {
        grid-template-columns: 1fr;
    }


    .tracking-code-box strong {
        font-size: 24px;
    }

}
.customer-repair-description {
    margin: 25px 0;
    padding: 20px;
    border-radius: 14px;
    background: #f7f9fc;
}

.customer-repair-description h3 {
    margin-bottom: 10px;
    color: var(--secondary);
    font-size: 13px;
}

.customer-repair-description p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 2;
}
/* =========================
   ADMIN DASHBOARD
========================= */

.admin-dashboard {
    min-height: calc(100vh - 90px);
    padding: 60px 0 100px;
    background: #f5f7fb;
}

.admin-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.admin-title h1 {
    margin: 10px 0;
    color: var(--secondary);
    font-size: 28px;
}

.admin-title p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
}


/* STATS */

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 25px;
}

.admin-stat {
    padding: 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 17px;
}

.admin-stat span {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 10px;
}

.admin-stat strong {
    color: var(--secondary);
    font-size: 27px;
}


/* TOOLS */

.admin-tools {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.admin-search {
    flex: 1;
}

.admin-search input,
.admin-tools select {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: white;
    outline: none;
    font-family: inherit;
    font-size: 11px;
}

.admin-tools select {
    width: 220px;
}

.admin-search input:focus,
.admin-tools select:focus {
    border-color: var(--primary);
}


/* TABLE */

.admin-table-box {
    overflow: hidden;
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    padding: 18px 15px;
    background: #f7f9fc;
    color: var(--muted);
    font-size: 10px;
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
}

.admin-table td {
    padding: 18px 15px;
    border-top: 1px solid var(--border);
    color: var(--secondary);
    font-size: 10px;
}

.admin-table td strong {
    display: block;
}

.admin-table td small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    direction: ltr;
    text-align: right;
}

.tracking-code {
    color: var(--primary);
    direction: ltr;
}

.admin-status {
    display: inline-block;
    padding: 7px 10px;
    border-radius: 20px;
    background: #fff5dc;
    color: #9b6700;
    font-size: 9px;
    white-space: nowrap;
}

.view-repair-btn {
    padding: 8px 13px;
    border: 0;
    border-radius: 8px;
    background: #edf3ff;
    color: var(--primary);
    font-family: inherit;
    font-size: 9px;
    font-weight: 700;
    cursor: pointer;
}


/* EMPTY */

.empty-repairs {
    display: none;
    padding: 80px 20px;
    text-align: center;
}

.empty-repairs > div {
    font-size: 40px;
    margin-bottom: 15px;
}

.empty-repairs h3 {
    color: var(--secondary);
    font-size: 16px;
}

.empty-repairs p {
    color: var(--muted);
    font-size: 10px;
}


/* MODAL */

.repair-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(5, 15, 30, 0.65);
}

.repair-modal.show {
    display: flex;
}

.repair-modal-content {
    position: relative;
    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    border-radius: 20px;
    background: white;
}

.modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 35px;
    height: 35px;
    border: 0;
    border-radius: 50%;
    background: #f1f3f6;
    color: var(--secondary);
    font-size: 20px;
    cursor: pointer;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.modal-header span {
    color: var(--muted);
    font-size: 11px;
}

.modal-header strong {
    color: var(--primary);
    direction: ltr;
}


/* MODAL INFO */

.modal-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.modal-info > div {
    padding: 14px;
    border-radius: 10px;
    background: #f7f9fc;
}

.modal-info span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 9px;
}

.modal-info strong {
    color: var(--secondary);
    font-size: 11px;
}


/* DESCRIPTION */

.modal-description {
    margin: 20px 0;
    padding: 18px;
    border-radius: 12px;
    background: #f7f9fc;
}

.modal-description h3 {
    margin-bottom: 8px;
    color: var(--secondary);
    font-size: 12px;
}

.modal-description p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 2;
}


/* STATUS */

.modal-status label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary);
    font-size: 11px;
    font-weight: 600;
}

.modal-status select {
    width: 100%;
    height: 48px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 9px;
    font-family: inherit;
    outline: none;
}

.save-status-btn {
    width: 100%;
    height: 50px;
    margin-top: 18px;
    border: 0;
    border-radius: 10px;
    background: var(--primary);
    color: white;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}


/* MOBILE */

@media (max-width: 900px) {

    .admin-stats {
        grid-template-columns: 1fr 1fr;
    }

    .admin-table-box {
        overflow-x: auto;
    }

    .admin-table {
        min-width: 850px;
    }

}


@media (max-width: 600px) {

    .admin-title {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-stats {
        grid-template-columns: 1fr 1fr;
    }

    .admin-tools {
        flex-direction: column;
    }

    .admin-tools select {
        width: 100%;
    }

    .repair-modal-content {
        padding: 22px 17px;
    }

}


@media (max-width: 400px) {

    .admin-stats {
        grid-template-columns: 1fr;
    }

}
/* =========================
   CONTACT MESSAGES
========================= */

.messages-list {
    display: grid;
    gap: 16px;
}


.message-card {
    padding: 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
}


.message-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}


.message-card-header strong {
    display: block;
    color: var(--secondary);
    font-size: 14px;
}


.message-card-header small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 10px;
    direction: ltr;
    text-align: right;
}


.message-card-header > span {
    color: var(--muted);
    font-size: 10px;
}


.message-subject {
    margin-top: 18px;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
}


.message-body {
    margin-top: 12px;
    padding: 15px;
    border-radius: 10px;
    background: #f7f9fc;
    color: var(--muted);
    font-size: 11px;
    line-height: 2;
}


.message-card-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}


.message-unread,
.message-read {
    padding: 7px 11px;
    border-radius: 20px;
    font-size: 9px;
}


.message-unread {
    background: #fff5dc;
    color: #9b6700;
}


.message-read {
    background: #e9f8ef;
    color: #16834a;
}


.message-read-btn,
.message-delete-btn {
    padding: 8px 12px;
    border: 0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 9px;
    cursor: pointer;
}


.message-read-btn {
    background: #edf3ff;
    color: var(--primary);
}


.message-delete-btn {
    background: #fff0f0;
    color: #c0392b;
}


.contact-success {
    margin-top: 25px;
    padding: 35px;
    text-align: center;
    border-radius: 18px;
    background: white;
    border: 1px solid var(--border);
}


.contact-success-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #e9f8ef;
    color: #16834a;
    font-size: 26px;
    font-weight: 800;
}


.contact-success h3 {
    color: var(--secondary);
    font-size: 17px;
}


.contact-success p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 10px;
}


@media (max-width: 600px) {

    .message-card-header {
        align-items: flex-start;
        flex-direction: column;
    }


    .message-card-footer {
        align-items: stretch;
        flex-direction: column;
    }

}
.admin-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.delete-repair-btn {
    padding: 8px 13px;
    border: 0;
    border-radius: 8px;
    background: #fff0f0;
    color: #c0392b;
    font-family: inherit;
    font-size: 9px;
    font-weight: 700;
    cursor: pointer;
}

.delete-repair-btn:hover {
    background: #ffe0e0;
}
.tracking-section {
    padding: 60px 0;
}

.tracking-box {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 35px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 22px;
}

.tracking-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #f1f5ff;
    font-size: 30px;
}

.tracking-content {
    flex: 1;
}

.tracking-content h2 {
    margin: 8px 0;
    font-size: 24px;
}

.tracking-content p {
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 12px;
}

#trackingForm {
    display: flex;
    gap: 10px;
}

#trackingCode {
    flex: 1;
    min-width: 0;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
    font-family: inherit;
    direction: ltr;
    text-align: left;
}

#trackingForm button {
    padding: 14px 22px;
    border: 0;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-family: inherit;
    cursor: pointer;
}

.tracking-result {
    margin-top: 20px;
}

.tracking-success {
    padding: 20px;
    border-radius: 15px;
    background: #f8fafc;
    border: 1px solid var(--border);
}

.tracking-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.tracking-header small,
.tracking-info small {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 9px;
}

.tracking-header strong {
    direction: ltr;
    display: block;
}

.tracking-status {
    padding: 8px 13px;
    border-radius: 20px;
    background: #eef5ff;
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
}

.tracking-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 18px;
}

.tracking-info strong {
    font-size: 11px;
}

.tracking-error {
    padding: 18px;
    border-radius: 12px;
    background: #fff5f5;
    color: #c0392b;
}

.tracking-error strong {
    display: block;
    margin-top: 5px;
}

.tracking-error p {
    margin: 5px 0 0;
    font-size: 10px;
}

@media (max-width: 700px) {

    .tracking-box {
        flex-direction: column;
        align-items: stretch;
    }

    #trackingForm {
        flex-direction: column;
    }

    .tracking-info {
        grid-template-columns: 1fr;
    }

}
.tracking-guide {
    margin-top: 14px;
    padding: 12px 15px;
    border-radius: 10px;
    background: #f8f9fb;
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 10px;
    line-height: 2;
}

.tracking-guide strong {
    display: block;
    margin-bottom: 3px;
    color: var(--secondary);
}

.tracking-guide p {
    margin: 0;
}
/* =========================================================
   ADMIN PANEL
   ========================================================= */

.admin-page {
    padding: 60px 0 100px;
    background: #f7f9fc;
    min-height: 700px;
}


/* =========================================================
   STATISTICS
   ========================================================= */

.admin-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-bottom: 30px;
}


.admin-stat-card {
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);
    transition: 0.25s ease;
}


.admin-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.09);
}


.admin-stat-card span {
    display: block;
    color: #64748b;
    font-size: 14px;
    margin-bottom: 12px;
}


.admin-stat-card strong {
    display: block;
    color: #0f172a;
    font-size: 30px;
    font-weight: 800;
}


/* =========================================================
   TOOLBAR
   ========================================================= */

.admin-toolbar {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 22px;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.04);
}


.admin-search {
    flex: 1;
}


.admin-search input,
.admin-filter select {
    width: 100%;
    height: 48px;
    border: 1px solid #dce3eb;
    border-radius: 12px;
    background: #ffffff;
    color: #1e293b;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: 0.2s ease;
}


.admin-search input {
    padding: 0 16px;
}


.admin-filter {
    width: 230px;
}


.admin-filter select {
    padding: 0 14px;
}


.admin-search input:focus,
.admin-filter select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}


.admin-refresh {
    height: 48px;
    padding: 0 20px;
    border: 0;
    border-radius: 12px;
    background: #0f172a;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
    white-space: nowrap;
}


.admin-refresh:hover {
    background: #1e293b;
    transform: translateY(-1px);
}


/* =========================================================
   TABLE
   ========================================================= */

.admin-table-wrapper {
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);
}


.admin-table {
    width: 100%;
    border-collapse: collapse;
}


.admin-table thead {
    background: #f8fafc;
}


.admin-table th {
    padding: 18px 16px;
    text-align: right;
    color: #475569;
    font-size: 13px;
    font-weight: 700;
    border-bottom: 1px solid #e8edf3;
    white-space: nowrap;
}


.admin-table td {
    padding: 18px 16px;
    border-bottom: 1px solid #edf1f5;
    color: #334155;
    font-size: 14px;
    vertical-align: middle;
}


.admin-table tbody tr {
    transition: 0.2s ease;
}


.admin-table tbody tr:hover {
    background: #f8fafc;
}


.admin-table tbody tr:last-child td {
    border-bottom: 0;
}


.repair-code {
    display: inline-block;
    direction: ltr;
    color: #2563eb;
    font-size: 14px;
    font-weight: 800;
}


.phone-number {
    display: block;
    direction: ltr;
    margin-top: 5px;
    color: #64748b;
    font-size: 12px;
}


/* =========================================================
   STATUS
   ========================================================= */

.admin-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 105px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}


.status-waiting {
    background: #fff7ed;
    color: #c2410c;
}


.status-diagnosing {
    background: #eff6ff;
    color: #1d4ed8;
}


.status-repairing {
    background: #eef2ff;
    color: #4338ca;
}


.status-testing {
    background: #f5f3ff;
    color: #7c3aed;
}


.status-ready {
    background: #ecfdf5;
    color: #047857;
}


.status-delivered {
    background: #f0fdf4;
    color: #15803d;
}


/* =========================================================
   MANAGE BUTTON
   ========================================================= */

.manage-btn {
    border: 0;
    border-radius: 10px;
    padding: 9px 16px;
    background: #2563eb;
    color: #ffffff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}


.manage-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}


/* =========================================================
   EMPTY
   ========================================================= */

.admin-empty {
    text-align: center;
    padding: 70px 20px;
}


.admin-empty > div {
    font-size: 42px;
    margin-bottom: 15px;
}


.admin-empty h3 {
    margin: 0 0 8px;
    color: #1e293b;
    font-size: 20px;
}


.admin-empty p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}


/* =========================================================
   MODAL
   ========================================================= */

.admin-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(5px);
}


.admin-modal.show {
    display: flex;
}


.admin-modal-content {
    width: min(850px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.25);
    animation: adminModalShow 0.2s ease;
}


@keyframes adminModalShow {

    from {
        opacity: 0;
        transform: translateY(15px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}


.admin-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
    border-bottom: 1px solid #e8edf3;
}


.admin-modal-header span {
    display: block;
    color: #64748b;
    font-size: 13px;
    margin-bottom: 5px;
}


.admin-modal-header h2 {
    margin: 0;
    direction: ltr;
    text-align: right;
    color: #0f172a;
    font-size: 20px;
}


.admin-modal-header button {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 10px;
    background: #f1f5f9;
    color: #475569;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s ease;
}


.admin-modal-header button:hover {
    background: #e2e8f0;
}


/* =========================================================
   FORM
   ========================================================= */

#repairEditForm {
    padding: 28px;
}


.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 20px;
}


.admin-form-group {
    margin-bottom: 20px;
}


.admin-form-grid .admin-form-group {
    margin-bottom: 0;
}


.admin-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
}


.admin-form-group input,
.admin-form-group select,
.admin-form-group textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #dce3eb;
    border-radius: 11px;
    background: #ffffff;
    color: #1e293b;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: 0.2s ease;
}


.admin-form-group input,
.admin-form-group select {
    height: 46px;
    padding: 0 13px;
}


.admin-form-group textarea {
    min-height: 100px;
    padding: 12px 13px;
    resize: vertical;
}


.admin-form-group input:focus,
.admin-form-group select:focus,
.admin-form-group textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}


.admin-form-group input[readonly],
.admin-form-group textarea[readonly] {
    background: #f8fafc;
    color: #64748b;
    cursor: not-allowed;
}


/* =========================================================
   MODAL BUTTONS
   ========================================================= */

.admin-modal-actions {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    padding-top: 8px;
    border-top: 1px solid #edf1f5;
}


.btn-cancel,
.btn-save {
    height: 46px;
    padding: 0 22px;
    border: 0;
    border-radius: 11px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}


.btn-cancel {
    background: #f1f5f9;
    color: #475569;
}


.btn-cancel:hover {
    background: #e2e8f0;
}


.btn-save {
    background: #2563eb;
    color: #ffffff;
}


.btn-save:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 1100px) {

    .admin-stats {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media (max-width: 850px) {

    .admin-toolbar {
        flex-direction: column;
        align-items: stretch;
    }


    .admin-filter {
        width: 100%;
    }


    .admin-refresh {
        width: 100%;
    }


    .admin-table-wrapper {
        overflow-x: auto;
    }


    .admin-table {
        min-width: 900px;
    }


    .admin-form-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 650px) {

    .admin-page {
        padding: 35px 0 70px;
    }


    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }


    .admin-stat-card {
        padding: 18px;
    }


    .admin-stat-card strong {
        font-size: 24px;
    }


    .admin-modal {
        padding: 12px;
    }


    .admin-modal-content {
        max-height: 94vh;
        border-radius: 17px;
    }


    .admin-modal-header {
        padding: 18px;
    }


    #repairEditForm {
        padding: 18px;
    }

}


@media (max-width: 430px) {

    .admin-stats {
        grid-template-columns: 1fr;
    }

}
/* =====================================================
   CONTACT SECTION
===================================================== */

.contact-section {
    padding: 100px 0;
    background: #f8fafc;
}


.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}


.contact-content {
    direction: rtl;
}


.contact-content h1 {
    margin: 15px 0 20px;
    font-size: 42px;
    line-height: 1.5;
}


.contact-content h1 strong {
    display: block;
}


.contact-intro {
    max-width: 620px;
    margin-bottom: 35px;
    color: #64748b;
    line-height: 2;
    font-size: 16px;
}


/* =====================================================
   CONTACT ITEMS
===================================================== */

.contact-items {
    display: grid;
    gap: 14px;
}


.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;

    padding: 18px 20px;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 16px;

    text-decoration: none;

    color: inherit;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.contact-item:hover {
    transform: translateY(-3px);

    border-color: #cbd5e1;

    box-shadow:
        0 12px 30px rgba(15, 23, 42, .08);
}


.contact-icon {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #f1f5f9;

    font-size: 24px;
}


.contact-item div:last-child {
    display: flex;
    flex-direction: column;
    gap: 5px;
}


.contact-item span {
    color: #64748b;

    font-size: 13px;
}


.contact-item strong {
    color: #0f172a;

    font-size: 15px;

    line-height: 1.8;
}


.contact-item small {
    color: #94a3b8;

    font-size: 12px;
}


/* =====================================================
   IMAGE
===================================================== */

.contact-visual {
    position: relative;
}


.contact-image-box {
    position: relative;

    overflow: hidden;

    min-height: 520px;

    border-radius: 28px;

    background: #e2e8f0;

    box-shadow:
        0 25px 60px rgba(15, 23, 42, .12);
}


.contact-image-box::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(15, 23, 42, .25)
        );

    pointer-events: none;
}


.contact-image-box img {
    width: 100%;
    height: 100%;

    min-height: 520px;

    object-fit: cover;

    display: block;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 900px) {

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .contact-content h1 {
        font-size: 32px;
    }


    .contact-image-box {
        min-height: 380px;
    }


    .contact-image-box img {
        min-height: 380px;
    }

}


@media (max-width: 600px) {

    .contact-section {
        padding: 65px 0;
    }


    .contact-content h1 {
        font-size: 28px;
    }


    .contact-item {
        padding: 15px;
    }


    .contact-icon {
        width: 46px;
        height: 46px;

        font-size: 21px;
    }


    .contact-image-box,
    .contact-image-box img {
        min-height: 300px;
    }

}
.admin-actions{
    display:flex;
    gap:8px;
    justify-content:center;
}

.delete-btn{
    border:none;
    background:#dc2626;
    color:#fff;
    padding:8px 12px;
    border-radius:8px;
    cursor:pointer;
}

.delete-btn:hover{
    background:#b91c1c;
}
/* =====================================================
   نسخه موبایل کل سایت
===================================================== */

@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    * {
        box-sizing: border-box;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    /* هدر */

    .header-container {
        width: 100%;
        min-height: 70px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .navbar {
        display: none;
    }

    .header-contact {
        display: none;
    }

    .menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* لوگو */

    .logo-text strong {
        font-size: 18px;
    }

    .logo-text small {
        font-size: 11px;
    }

    /* عنوان صفحات */

    h1 {
        font-size: 28px;
        line-height: 1.5;
    }

    h2 {
        font-size: 23px;
        line-height: 1.6;
    }

    h3 {
        font-size: 18px;
    }

    p {
        line-height: 2;
    }

    /* بخش‌های اصلی */

    section {
        width: 100%;
        max-width: 100%;
    }

    /* کارت‌ها */

    .cards,
    .services-grid,
    .features-grid,
    .footer-grid {
        grid-template-columns: 1fr !important;
    }

    /* فرم‌ها */

    input,
    select,
    textarea,
    button {
        max-width: 100%;
    }

    /* جستجوی پیگیری */

    .tracking-input {
        flex-direction: column;
        gap: 12px;
    }

    .tracking-input input,
    .tracking-input button {
        width: 100%;
    }

    /* اطلاعات تعمیر */

    .repair-info-grid {
        grid-template-columns: 1fr !important;
    }

    /* نتیجه پیگیری */

    .tracking-result-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    /* تایم‌لاین */

    .repair-timeline {
        width: 100%;
    }

    .timeline-item {
        width: 100%;
    }

    /* CTA */

    .cta-container {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 20px;
    }

    .cta-container .btn {
        width: 100%;
    }

    /* فوتر */

    .footer-grid {
        gap: 30px;
    }

    .footer-column {
        width: 100%;
    }

    /* دکمه تلفن شناور */

    .floating-phonr {
        display: flex;
        position: fixed;
        left: 16px;
        bottom: 16px;
        z-index: 9999;
    }

}
.header-contact {
    display: flex;
    flex-direction: row ;
    align-items: center;
    gap: 12px;
}

.header-qr {
    width: 48px;
    height: 48px;
    padding: 3px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.header-qr img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.header-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
}

.header-phone span {
    font-size: 11px;
    color: #7a8494;
    line-height: 1.4;
}

.header-phone a {
    direction: ltr;
    color: #1d2f46;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.header-phone a:hover {
    color: #2563eb;
}


/* ==============================
   موبایل
============================== */

@media (max-width: 768px) {

    .header-contact {
        gap: 8px;
    }

    .header-qr {
        width: 42px;
        height: 42px;
        padding: 3px;
    }

    .header-phone span {
        font-size: 10px;
    }

    .header-phone a {
        font-size: 12px;
    }
}
/* =========================================
   QR Code کنار شماره تماس هدر
========================================= */

.header-contact {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
}

.header-qr {
    position: static !important;
    width: 45px !important;
    height: 45px !important;
    padding: 3px !important;
    margin: 0 !important;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 7px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0;
}

.header-qr img {
    position: static !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: contain;
    display: block;
}

.header-phone {
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 3px !important;
    margin: 0 !important;
}

.header-phone span {
    font-size: 11px;
    color: #7a8494;
}

.header-phone a {
    direction: ltr;
    color: #1d2f46;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}
.header {
    position: relative;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.header-container {
    position: relative;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    direction: rtl;
}

/* QR CODE */

.header-qr {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}

.header-qr img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    display: block;
    background: #ffffff;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3478f6;
    color: #ffffff;
    border-radius: 14px;
    font-size: 25px;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(52, 120, 246, 0.25);
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text strong {
    font-size: 20px;
    font-weight: 800;
}

.logo-text small {
    margin-top: 3px;
    font-size: 11px;
    color: #7b8494;
}


/* NAVBAR */

.navbar {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar a {
    position: relative;
    color: #374151;
    text-decoration
}
/* =====================================================
   QR CODE - گوشه چپ بالای تمام صفحات
   ===================================================== */

.header-qr {
    position: fixed !important;

    top: 50px !important;
    left: 16px !important;

    width: 65px !important;
    height: 65px !important;

    padding: 4px !important;

    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 9px !important;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12) !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    z-index: 99999 !important;
    box-sizing: border-box !important;
}

.header-qr img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
}

/* =====================================================
   جلوگیری از دخالت header-contact در QR
   ===================================================== */

.header-contact {
    position: relative;
}


/* =====================================================
   موبایل
   ===================================================== */

@media (max-width: 768px) {

    .header-qr {
        top: 8px !important;
        left: 10px !important;

        width: 42px !important;
        height: 42px !important;

        padding: 3px !important;
    }

}
.qr-group {
    position: fixed;
    top: 15px;
    left: 15px;

    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;

    z-index: 99999;
}

.qr-item {
    width: 70px;
    min-height: 85px;

    background: #fff;
    padding: 6px;

    border: 1px solid #d9e2f0;
    border-radius: 10px;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    box-sizing: border-box;
}

.qr-item img {
    width: 58px;
    height: 58px;

    object-fit: contain;
    display: block;

    border-radius: 5px;
}

.qr-item h5 {
    margin: 5px 0 0 0;

    font-size: 10px;
    font-weight: 600;

    color: #24364b;

    text-align: center;
    line-height: 1.3;

    white-space: nowrap;
}
