:root {
    --primary: #E17100;
    --primary-dark: #b85b00;
    --primary-light: #ff8c2e;
    --primary-soft: #fff3e8;
    --dark: #1a1a2e;
    --text: #2d2d3f;
    --text-light: #5a5a72;
    --bg-light: #fefefe;
    --bg-cream: #fdfaf6;
    --bg-gray: #f8f9fa;
    --border: #e8e8ef;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-primary: 0 8px 32px rgba(225, 113, 0, 0.25);
    --shadow-primary-lg: 0 20px 60px rgba(225, 113, 0, 0.3);
    --radius-sm: 12px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Vazirmatn FD, sans-serif;
    color: var(--text);
    background-color: var(--bg-light);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

img{
    max-width: 100%;
}

.text-primary{
    color: var(--primary) !important;
}

/* ===== BACKGROUND SHADOW BLOBS ===== */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    animation: blobFloat 20s ease-in-out infinite;
}

.bg-blob--1 {
    width: 600px;
    height: 600px;
    background: #E17100;
    top: -200px;
    right: -150px;
    animation-delay: 0s;
}

.bg-blob--2 {
    width: 500px;
    height: 500px;
    background: #ff6b6b;
    bottom: -180px;
    left: -120px;
    animation-delay: -7s;
    opacity: 0.08;
}

.bg-blob--3 {
    width: 450px;
    height: 450px;
    background: #4ecdc4;
    top: 40%;
    left: -100px;
    animation-delay: -14s;
    opacity: 0.07;
}

.bg-blob--4 {
    width: 400px;
    height: 400px;
    background: #ffb347;
    bottom: 30%;
    right: -80px;
    animation-delay: -10s;
    opacity: 0.1;
}

.bg-blob--5 {
    width: 350px;
    height: 350px;
    background: #7c5cfc;
    top: 60%;
    right: 30%;
    animation-delay: -3s;
    opacity: 0.06;
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(40px, -30px) scale(1.08);
    }

    50% {
        transform: translate(-20px, 25px) scale(0.94);
    }

    75% {
        transform: translate(-35px, -20px) scale(1.05);
    }
}

/* ===== MAIN CONTENT WRAPPER ===== */
.main-content {
    position: relative;
    z-index: 1;
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 12px 0;
    transition: var(--transition);
    z-index: 1000;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary) !important;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar-brand img{
    max-height: 40px;
}

.navbar-brand .brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #E17100, #ff8c2e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: var(--shadow-primary);
}

.nav-link {
    font-weight: 500;
    color: var(--text) !important;
    margin: 0 4px;
    padding: 8px 16px !important;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary) !important;
    background: var(--primary-soft);
}

.nav-link.nav-cta {
    background: var(--primary) !important;
    color: #fff !important;
    font-weight: 600;
    padding: 10px 24px !important;
    border-radius: 50px;
    box-shadow: var(--shadow-primary);
    transition: var(--transition);
}

.nav-link.nav-cta:hover {
    background: var(--primary-dark) !important;
    box-shadow: var(--shadow-primary-lg);
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    padding: 8px;
    color: var(--text);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 120px 0 80px;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-soft);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge .badge-dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(225, 113, 0, 0.6);
    }

    50% {
        box-shadow: 0 0 0 16px rgba(225, 113, 0, 0);
    }
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: 20px;
    animation: fadeInUp 0.7s ease-out;
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(225, 113, 0, 0.18);
    border-radius: 6px;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.9;
    animation: fadeInUp 0.8s ease-out;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s ease-out;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #E17100, #ff7b1a);
    color: #fff;
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-primary-lg);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(225, 113, 0, 0.4);
    background: linear-gradient(135deg, #c96000, #E17100);
    color: #fff;
}

.btn-hero-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--border);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-soft);
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #2d2d3f, #1a1a2e);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-image-wrapper .hero-overlay-icon {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    /* border: 2px solid rgba(255, 255, 255, 0.3); */
    overflow: hidden;
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 14px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.hero-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.hero-stat-icon.orange {
    background: #fff3e8;
    color: #E17100;
}

.hero-stat-icon.green {
    background: #e8faf3;
    color: #10b981;
}

.hero-stat-icon.blue {
    background: #e8f0ff;
    color: #3b82f6;
}

.hero-stat-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 700;
}

.hero-stat-text span {
    font-size: 0.85rem;
    color: var(--text-light);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== SECTION STYLES ===== */
.section-padding {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    background: var(--primary-soft);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 680px;
    margin: 0 auto;
}

.section-content {
    font-size: 1.1rem;
    color: var(--text);
    max-width: 980px;
    margin: 0 auto;
    margin-bottom: 10px;
}
.section-content:last-of-type{
    margin-bottom: 0;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--bg-cream);
    position: relative;
}

.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 100px;
    height: 100px;
    background: var(--primary-soft);
    border-radius: 50%;
    transition: var(--transition);
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
    width: 200px;
    height: 200px;
    top: -60px;
    right: -60px;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.service-icon-wrapper.orange {
    background: linear-gradient(135deg, #fff3e8, #ffe4cc);
    color: #E17100;
}

.service-icon-wrapper.red {
    background: linear-gradient(135deg, #fff0f0, #ffe0e0);
    color: #e74c3c;
}

.service-icon-wrapper.teal {
    background: linear-gradient(135deg, #f0faf8, #e0f5f0);
    color: #0d9488;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card h4 {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.service-card .service-badge {
    display: inline-block;
    background: var(--bg-gray);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 12px;
    position: relative;
    z-index: 1;
}

/* ===== HOW IT WORKS ===== */
.steps-section {
    position: relative;
    background-color: var(--primary-soft);
}

.step-card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    transition: var(--transition);
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E17100, #ff8c2e);
    color: #fff;
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-primary);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.step-card:hover .step-number {
    transform: scale(1.15);
    box-shadow: var(--shadow-primary-lg);
}

.step-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
    color: var(--primary);
    box-shadow: var(--shadow-primary);
    position: relative;
    z-index: 2;
    transition: var(--transition);
    border: 3px solid transparent;
}

.step-card:hover .step-icon-circle {
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
    transform: translateY(-5px);
}

.step-card h4 {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* .step-connector {
    display: none;
}

@media (min-width: 992px) {
    .step-connector {
        display: block;
        position: absolute;
        top: 70px;
        right: 70px;
        right: calc(50% + 60px);
        width: calc(100% - 120px);
        height: 3px;
        background: linear-gradient(to left, #E17100, #ffd4b0, #E17100);
        border-radius: 3px;
        z-index: 1;
        opacity: 0.5;
    }
} */

/* ===== Error SECTION ===== */
.error-section {
    /* background: var(--bg-light); */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}
.error-title {
    font-size: 7rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 5px;
}

.error-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 680px;
    margin: 0 auto;
}

/* ===== page SECTION ===== */
.page-section{
    background-color: var(--primary-soft);
}
.page-padding{
    padding: 60px 0;
}

/* ===== story SECTION ===== */
.story-section{
    background-color: var(--bg-light);
}
.story-section img{
    display: block;
    margin: 0 auto;
    max-width: 200px;
}
/* ===== why SECTION ===== */
.why-section{
    background-color: var(--bg-cream);
}
/* ===== benefit SECTION ===== */
.benefit-section{
    background-color: var(--bg-light);
}
.benefit-section img{
    display: block;
    margin: 0 auto;
    max-width: 500px;
}
/* ===== signature SECTION ===== */
.signature-section{
    background-color: var(--primary);
    color: #fff;
    font-size: 2.2rem;
    padding: 120px 0;
}


/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--primary) !important;
    position: relative;
}

.about-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 48px 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-card::after {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: var(--primary-soft);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
}

.about-card .about-content {
    position: relative;
    z-index: 1;
}

.about-card h3 {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.about-highlight {
    color: var(--primary);
    font-weight: 700;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.about-features li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 500;
    color: var(--text);
}

.about-features li i {
    color: #10b981;
    font-size: 1.2rem;
    margin-top: 4px;
    flex-shrink: 0;
}
.about-image{

}
.about-image img{
    max-height: 450px;
    border-radius: 15px;
}

/* ===== TERMS SECTION ===== */
.terms-section {
    position: relative;
}

.terms-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.terms-card:hover {
    border-top-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.terms-card .terms-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    background: var(--primary-soft);
    color: var(--primary);
}

.terms-card h5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.terms-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(225, 113, 0, 0.15);
    border-radius: 50%;
    filter: blur(80px);
}

.contact-section .section-title {
    color: #fff;
}

.contact-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.contact-section .section-label {
    background: rgba(225, 113, 0, 0.25);
    color: #ffb347;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    height: 100%;
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.contact-info-card .contact-icon {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 14px;
}

.contact-info-card h6 {
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.contact-info-card span,
.contact-info-card a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: var(--primary-light);
}

/* ===== FOOTER ===== */
.footer-section {
    background: #141420;
    color: rgba(255, 255, 255, 0.7);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-section .footer-brand {
    font-weight: 800;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 8px;
}

.enamad-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    line-height: 1.4;
    transition: var(--transition);
    cursor: default;
}

.enamad-badge:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
}

.enamad-badge img{
    max-width: 60px !important;
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: var(--shadow-primary-lg);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    border: none;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .hero-section {
        padding: 100px 0 50px;
        min-height: auto;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .hero-visual {
        margin-top: 40px;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-card {
        padding: 30px 20px;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 14px 24px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .hero-stats {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stat {
        justify-content: center;
    }

    .section-padding {
        padding: 60px 0;
    }
    .page-padding{
        padding: 40px 0;
    }
    .signature-section{
        padding: 60px 0;
        font-size: 1.6rem;
    }
}

/* ===== SMOOTH SCROLL ===== */
html {
    scroll-behavior: smooth;
}

/* ===== SELECTION STYLE ===== */
::selection {
    background: #E17100;
    color: #fff;
}

/* ===== FOCUS STYLES ===== */
a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(225, 113, 0, 0.5);
    outline-offset: 3px;
    border-radius: 8px;
}

/* Trust badge shimmer */
.trust-shimmer {
    position: relative;
    overflow: hidden;
}

.trust-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% {
        left: 150%;
    }
}