/* ========================================
   Neyzeh Services Page - Clean Modern Design
   ======================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-light: #EFF6FF;
    --secondary: #F97316;
    --dark: #111827;
    --dark-light: #1F2937;
    --text: #374151;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --success: #10B981;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Vazirmatn', system-ui, -apple-system, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
}

.icon-sm { width: 18px; height: 18px; }

/* ========================================
   Navigation
   ======================================== */
.navbar-services {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar-services.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img { transition: transform 0.3s ease; }
.nav-logo:hover img { transform: scale(1.05); }

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-services.scrolled .nav-links a { color: var(--text); }

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.navbar-services.scrolled .nav-cta {
    background: var(--primary);
    border-color: var(--primary);
}

.nav-cta:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ========================================
   Hero Section - Clean & Minimal
   ======================================== */
.hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 140px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,255,255,0.15) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 20px;
}

.gradient-text {
    color: #FCD34D;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-secondary-custom:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

/* ========================================
   Value Props Section
   ======================================== */
.value-props {
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.value-icon i { width: 24px; height: 24px; }

.value-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.value-text span {
    font-size: 13px;
    color: var(--text-light);
}

/* ========================================
   Goal Section
   ======================================== */
.goal-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.goal-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-100);
    aspect-ratio: 4/3;
}

.goal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.goal-content {
    text-align: right;
}

.goal-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.goal-icon i {
    width: 28px;
    height: 28px;
}

.goal-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.goal-main {
    font-size: 17px;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 16px;
}

.goal-main strong {
    color: var(--primary);
}

.goal-sub {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.9;
    margin: 0;
}

/* ========================================
   Sections General
   ======================================== */
.section-padding { padding: 80px 0; }

.bg-light-subtle {
    background: var(--gray-50);
}

.bg-dark-section {
    background: var(--dark);
}

.section-header-compact {
    text-align: center;
    margin-bottom: 48px;
}

.section-header-compact h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.section-header-compact p {
    font-size: 16px;
    color: var(--text-light);
}

/* ========================================
   Steps Horizontal
   ======================================== */
.steps-horizontal {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 28px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.step-num {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.step-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 50px;
    color: var(--gray-200);
}

.step-connector i {
    width: 24px;
    height: 24px;
}

/* ========================================
   Pricing Layout
   ======================================== */
.pricing-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-main-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-100);
}

.price-amount {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.price-meta {
    display: flex;
    flex-direction: column;
}

.price-currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.price-per {
    font-size: 14px;
    color: var(--text-light);
}

.pricing-details {
    margin-bottom: 24px;
}

.pricing-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.pricing-detail-item i {
    width: 20px;
    height: 20px;
    color: var(--success);
}

.pricing-detail-item span {
    font-size: 15px;
    color: var(--text);
}

.btn-start-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-start-full:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-start-full i {
    width: 20px;
    height: 20px;
}

.lead-sample-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.lead-sample-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}

.lead-sample-header i {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.lead-sample-header span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.lead-sample-content {
    padding: 8px 24px;
}

.lead-sample-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
}

.lead-sample-row:last-child {
    border-bottom: none;
}

.lead-label {
    font-size: 14px;
    color: var(--text-light);
}

.lead-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

/* ========================================
   Guarantees Grid
   ======================================== */
.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.guarantee-card-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 16px;
}

.guarantee-card-icon i {
    width: 26px;
    height: 26px;
}

.guarantee-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.guarantee-card > p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
}

.guarantee-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.guarantee-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text);
}

.guarantee-list li i {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.guarantee-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
    border-radius: var(--radius-sm);
}

.guarantee-note i {
    width: 20px;
    height: 20px;
    color: var(--secondary);
    flex-shrink: 0;
}

.guarantee-note span {
    font-size: 13px;
    color: var(--dark);
    line-height: 1.6;
}

/* ========================================
   Benefits Grid
   ======================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all 0.2s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--primary);
}

.benefit-icon i {
    width: 24px;
    height: 24px;
}

.benefit-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.benefit-item p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   Requirements Section
   ======================================== */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.req-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all 0.2s ease;
}

.req-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.req-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary);
}

.req-icon i {
    width: 28px;
    height: 28px;
}

.req-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.req-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   Contact CTA Section
   ======================================== */
.contact-cta {
    text-align: center;
    padding: 48px 24px;
}

.contact-cta h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-whatsapp:hover {
    background: #1DA851;
    transform: translateY(-2px);
    color: var(--white);
}

.btn-call, .btn-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-call:hover, .btn-email:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.btn-call i, .btn-email i {
    width: 20px;
    height: 20px;
}

/* ========================================
   Footer Minimal
   ======================================== */
.footer-minimal {
    background: var(--dark-light);
    padding: 24px 0;
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo img {
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-logo:hover img {
    opacity: 1;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copy {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 991px) {
    .nav-links { display: none; }

    .value-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .goal-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .goal-image {
        order: -1;
    }

    .goal-content {
        text-align: center;
    }

    .goal-icon {
        margin: 0 auto 20px;
    }

    .steps-horizontal {
        flex-direction: column;
        gap: 24px;
    }

    .step-connector {
        display: none;
    }

    .pricing-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .section-padding { padding: 60px 0; }

    .hero-section { padding: 120px 0 60px; }
    .hero-title { font-size: 28px; }
    .hero-desc { font-size: 15px; }

    .value-props { margin-top: -30px; }
    .value-item { padding: 20px; }
    .value-text strong { font-size: 14px; }
    .value-text span { font-size: 12px; }

    .section-header-compact h2 { font-size: 24px; }
    .section-header-compact p { font-size: 14px; }

    .step-item { padding: 20px 16px; }
    .step-num { width: 36px; height: 36px; font-size: 16px; }
    .step-item h4 { font-size: 15px; }
    .step-item p { font-size: 13px; }

    .lead-info-header { padding: 14px 20px; }
    .lead-price { font-size: 20px; }
    .lead-info-content { padding: 20px; }
    .lead-row { padding: 10px 0; }
    .lead-row div { font-size: 14px; }

    .pricing-content h2 { font-size: 26px; }
    .pricing-desc { font-size: 14px; }
    .pricing-features li { font-size: 14px; }
    .btn-start { padding: 14px 24px; font-size: 15px; }

    .guarantee-banner { padding: 20px; }
    .guarantee-icon { width: 40px; height: 40px; }
    .guarantee-item h4 { font-size: 15px; }
    .guarantee-item p { font-size: 13px; }

    .req-card { padding: 24px 20px; }
    .req-icon { width: 48px; height: 48px; }
    .req-icon i { width: 24px; height: 24px; }
    .req-card h4 { font-size: 15px; }
    .req-card p { font-size: 13px; }

    .goal-section h2 { font-size: 24px; }
    .goal-main { font-size: 16px; }
    .goal-sub { font-size: 14px; }

    .pricing-main-card { padding: 24px; }
    .price-amount { font-size: 48px; }

    .guarantee-card { padding: 24px; }
    .guarantee-card h4 { font-size: 16px; }
    .guarantee-card > p { font-size: 14px; }
    .guarantee-list li { font-size: 13px; }

    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .benefit-item { padding: 20px 14px; }
    .benefit-icon { width: 40px; height: 40px; }
    .benefit-icon i { width: 20px; height: 20px; }

    .contact-cta h2 { font-size: 26px; }
    .contact-cta p { font-size: 14px; }
    .contact-buttons { gap: 12px; }
    .btn-whatsapp, .btn-call, .btn-email {
        padding: 12px 20px;
        font-size: 14px;
    }

    .footer-row {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-links { gap: 16px; }
}

@media (max-width: 575px) {
    .hero-actions { flex-direction: column; gap: 12px; }
    .btn-primary-custom, .btn-secondary-custom { width: 100%; justify-content: center; }

    .contact-buttons { flex-direction: column; }
    .btn-whatsapp, .btn-call, .btn-email { width: 100%; justify-content: center; }
}

/* Fix AOS horizontal scroll issue on mobile */
[data-aos^="fade"][data-aos^="fade"] {
    opacity: 0;
    transition-property: opacity, transform;
}

@media (max-width: 991px) {
    [data-aos="fade-left"],
    [data-aos="fade-right"] {
        transform: none !important;
    }
    
    [data-aos="fade-left"].aos-animate,
    [data-aos="fade-right"].aos-animate {
        transform: none !important;
    }
}
