/* ================================
   Trust Badges Section
================================ */
.trust-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 40px 0;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.trust-section .trust-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    align-items: center;
}

.trust-section .trust-badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.trust-section .trust-badge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.trust-section .badge-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
}
.trust-section .badge-text h2{
    font-size: 16px;
}

.trust-section .badge-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.trust-section .badge-text p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* ================================
   Services Section
================================ */
.services-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Section Header */
.services-section .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-section .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    color: #667eea;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.services-section .section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.services-section .section-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

/* Services Grid */
.services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Service Card */
.services-section .service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.services-section .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.services-section .service-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.services-section .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.services-section .service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 16px;
    color: #667eea;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.services-section .service-card:hover .service-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.services-section .service-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.services-section .service-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 24px 0;
}

/* Service Features List */
.services-section .service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.services-section .service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #475569;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.services-section .service-features li:last-child {
    border-bottom: none;
}

.services-section .service-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #10b981;
}

/* Service Link */
.services-section .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.services-section .service-link:hover {
    gap: 12px;
    color: #764ba2;
}

.services-section .service-link svg {
    rotate: 180deg;
    transition: transform 0.3s ease;
}

.services-section .service-link:hover svg {
    transform: translateX(-3px);
}

/* ================================
   Responsive Design
================================ */
@media (max-width: 1024px) {
    .services-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-section .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .trust-section .trust-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-section {
        padding: 60px 0;
    }

    .services-section .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-section .section-title {
        font-size: 28px;
    }

    .services-section .section-description {
        font-size: 16px;
    }

    .services-section .service-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .services-section .section-header {
        margin-bottom: 40px;
    }

    .services-section .section-title {
        font-size: 24px;
    }

    .trust-section .trust-badge-item {
        padding: 15px;
    }

    .trust-section .badge-icon {
        width: 50px;
        height: 50px;
    }

    .trust-section .badge-icon svg {
        width: 30px;
        height: 30px;
    }
}


/* ================================
   Portfolio Section - COMPLETE
================================ */
.portfolio-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
    position: relative;
}

/* Portfolio Filters */
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 40px 0;
}

.filter-btn {
    font-family: 'Vazirmatn';
    padding: 12px 28px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.filter-btn:hover::before {
    width: 300px;
    height: 300px;
}

.filter-btn:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Portfolio Item */
.portfolio-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 1;
    transform: scale(1);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2);
}

.portfolio-item.hidden {
    display: none;
}

/* Portfolio Image */
.portfolio-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

/* Portfolio Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            135deg,
            rgba(102, 126, 234, 0.95) 0%,
            rgba(118, 75, 162, 0.95) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 30px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-category {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.portfolio-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 10px 0;
}

.portfolio-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.portfolio-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Vazirmatn';
}

.portfolio-view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.portfolio-view-btn svg {
    transition: transform 0.3s ease;
}

.portfolio-view-btn:hover svg {
    transform: translateX(-3px);
}

/* Portfolio Meta */
.portfolio-meta {
    padding: 20px 25px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
}

.meta-item svg {
    stroke: #667eea;
    flex-shrink: 0;
}

/* Load More Button */
.portfolio-load-more {
    text-align: center;
    margin-top: 60px;
}

.load-more-btn {
    font-family: 'Vazirmatn';
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.load-more-btn svg {
    transition: transform 0.3s ease;
}

.load-more-btn:hover svg {
    transform: translateY(3px);
}

/* ================================
   Portfolio Modal
================================ */
.portfolio-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.portfolio-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.portfolio-modal-content {
    position: relative;
    background: white;
    border-radius: 24px;
    max-width: 1000px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10000;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.portfolio-modal.active .portfolio-modal-content {
    transform: scale(1);
}

.portfolio-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.portfolio-modal-close:hover {
    transform: rotate(90deg);
    background: #ff4757;
}

.portfolio-modal-close:hover svg {
    stroke: white;
}

.portfolio-modal-close svg {
    stroke: #64748b;
    transition: stroke 0.3s ease;
}

.portfolio-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.portfolio-modal-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.portfolio-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-modal-details {
    padding: 50px 40px;
}

.modal-category {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.3;
}

.modal-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 30px;
}

.modal-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9ff;
    border-radius: 16px;
}

.modal-info-item h4 {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-info-item p {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.modal-features {
    margin-bottom: 30px;
}

.modal-features h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.modal-features ul {
    list-style: none;
    padding: 0;
}

.modal-features li {
    padding: 10px 0;
    padding-right: 30px;
    position: relative;
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.modal-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    top: 10px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.modal-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.modal-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.modal-cta-btn svg {
    transition: transform 0.3s ease;
}

.modal-cta-btn:hover svg {
    transform: translateX(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }

    .portfolio-modal-body {
        grid-template-columns: 1fr;
    }

    .portfolio-modal-image {
        min-height: 300px;
    }

    .modal-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 60px 0;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .portfolio-modal-details {
        padding: 30px 20px;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-cta-btn {
        font-size: 14px;
        padding: 14px 24px;
    }
}


/* ================================
   Process Section - COMPLETE
================================ */
.process-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 50%, #f8f9ff 100%);
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.process-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.process-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
}

.process-circle-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -150px;
}

.process-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
}

/* Process Steps Container */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

/* Process Step Card */
.process-step {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.2);
}

.process-step:hover::before {
    transform: scaleX(1);
}

/* Step Number */
.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    transition: all 0.4s ease;
}

.process-step:hover .step-number {
    opacity: 0.25;
    transform: scale(1.1);
}

/* Step Icon */
.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.process-step:hover .step-icon {
    transform: rotateY(360deg);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

.step-icon svg {
    stroke: white;
    transition: transform 0.4s ease;
}

.process-step:hover .step-icon svg {
    transform: scale(1.1);
}

/* Step Title */
.step-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.process-step:hover .step-title {
    color: #667eea;
}

/* Step Description */
.step-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Step Duration */
.step-duration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f8f9ff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
    transition: all 0.3s ease;
}

.process-step:hover .step-duration {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.step-duration svg {
    stroke: currentColor;
}

/* Process CTA */
.process-cta {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.process-cta-btn {
    text-decoration: none;
    font-family: 'Vazirmatn';
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.process-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.process-cta-btn:hover::before {
    left: 100%;
}

.process-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

.process-cta-btn svg {
    transition: transform 0.3s ease;
}

.process-cta-btn:hover svg {
    transform: translateX(-5px);
}

/* Animation for Steps (on scroll - optional) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-step {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.process-step[data-step="1"] { animation-delay: 0.1s; }
.process-step[data-step="2"] { animation-delay: 0.2s; }
.process-step[data-step="3"] { animation-delay: 0.3s; }
.process-step[data-step="4"] { animation-delay: 0.4s; }
.process-step[data-step="5"] { animation-delay: 0.5s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .step-icon {
        width: 70px;
        height: 70px;
    }

    .step-icon svg {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 60px 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-step {
        padding: 30px 25px;
    }

    .step-number {
        font-size: 36px;
    }

    .step-title {
        font-size: 20px;
    }

    .step-description {
        font-size: 14px;
    }

    .process-cta-btn {
        font-size: 15px;
        padding: 16px 35px;
    }

    .process-circle-1,
    .process-circle-2 {
        width: 300px;
        height: 300px;
    }
}

/* ================================
   Testimonials Section Styles
================================ */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0c29 0%, #1a1545 50%, #24243e 100%);
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.testimonials-section .testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.testimonials-section .testimonials-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.05) 50%, transparent 100%);
    animation: float-testimonials 20s ease-in-out infinite;
}

.testimonials-section .testimonials-circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.testimonials-section .testimonials-circle-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -150px;
    animation-delay: -10s;
}

@keyframes float-testimonials {
    0%, 100% {
        opacity: 0.3;
        transform: translate(0, 0) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* Section Content */
.testimonials-section .container {
    position: relative;
    z-index: 2;
}

/* Section Header */
.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-section .section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 15px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.testimonials-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.testimonials-section .section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Testimonials Grid */
.testimonials-section .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Testimonial Card */
.testimonials-section .testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.testimonials-section .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.testimonials-section .testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
}

.testimonials-section .testimonial-card:hover::before {
    opacity: 1;
}

/* Rating Stars */
.testimonials-section .testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonials-section .testimonial-rating svg {
    transition: transform 0.3s ease;
}

.testimonials-section .testimonial-card:hover .testimonial-rating svg {
    transform: scale(1.1);
}

/* Quote Icon */
.testimonials-section .testimonial-quote-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #667eea;
    opacity: 0.1;
    pointer-events: none;
}

/* Testimonial Text */
.testimonials-section .testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

/* Author Section */
.testimonials-section .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.testimonials-section .author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.testimonials-section .testimonial-card:hover .author-avatar {
    border-color: rgba(102, 126, 234, 0.6);
    transform: scale(1.05);
}

.testimonials-section .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-section .author-info {
    flex: 1;
}

.testimonials-section .author-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 5px 0;
}

.testimonials-section .author-project {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Stats Section */
.testimonials-section .testimonials-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    flex-wrap: wrap;
}

.testimonials-section .stat-item {
    text-align: center;
}

.testimonials-section .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.testimonials-section .stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.testimonials-section .stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .testimonials-section .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-section .section-title {
        font-size: 2rem;
    }

    .testimonials-section .section-description {
        font-size: 1rem;
    }

    .testimonials-section .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .testimonials-section .testimonial-card {
        padding: 25px;
    }

    .testimonials-section .testimonial-text {
        font-size: 0.95rem;
    }

    .testimonials-section .testimonials-stats {
        gap: 30px;
        padding: 30px 20px;
    }

    .testimonials-section .stat-number {
        font-size: 2rem;
    }

    .testimonials-section .stat-label {
        font-size: 0.85rem;
    }

    .testimonials-section .stat-divider {
        display: none;
    }

    .testimonials-section .testimonials-circle-1,
    .testimonials-section .testimonials-circle-2 {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .testimonials-section .section-title {
        font-size: 1.6rem;
    }

    .testimonials-section .testimonial-card {
        padding: 20px;
    }

    .testimonials-section .author-avatar {
        width: 50px;
        height: 50px;
    }

    .testimonials-section .author-name {
        font-size: 0.95rem;
    }

    .testimonials-section .author-project {
        font-size: 0.85rem;
    }

    .testimonials-section .stat-number {
        font-size: 1.8rem;
    }
}

/* Animation Enhancement */
@media (prefers-reduced-motion: no-preference) {
    .testimonials-section .testimonial-card {
        animation: fade-in-up 0.6s ease-out backwards;
    }

    .testimonials-section .testimonial-card:nth-child(1) { animation-delay: 0.1s; }
    .testimonials-section .testimonial-card:nth-child(2) { animation-delay: 0.2s; }
    .testimonials-section .testimonial-card:nth-child(3) { animation-delay: 0.3s; }
    .testimonials-section .testimonial-card:nth-child(4) { animation-delay: 0.4s; }
    .testimonials-section .testimonial-card:nth-child(5) { animation-delay: 0.5s; }
    .testimonials-section .testimonial-card:nth-child(6) { animation-delay: 0.6s; }

    @keyframes fade-in-up {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* ================================
   CTA Section Styles
================================ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.cta-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.4) 0%, transparent 70%);
    top: -200px;
    left: -200px;
}

.cta-orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.3) 0%, transparent 70%);
    bottom: -250px;
    right: -250px;
}

.cta-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 63, 94, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

/* Content Container */
.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

/* Text Wrapper */
.cta-text-wrapper {
    max-width: 650px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(102, 126, 234, 0.15);
    color: #667eea;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(102, 126, 234, 0.3);
    margin-bottom: 25px;
}

.cta-badge svg {
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 20px;
}

.cta-gradient-text {
    display: block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 10px;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Features List */
.cta-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.cta-feature svg {
    flex-shrink: 0;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.cta-btn-primary {
    font-family: 'Vazirmatn';
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.cta-btn-primary svg {
    transition: transform 0.3s ease;
}

.cta-btn-primary:hover svg {
    transform: translateX(5px);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* Trust Indicators */
.cta-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.trust-item svg {
    color: #fbbf24;
    flex-shrink: 0;
}

/* Visual Element */
.cta-visual {
    position: relative;
}

.cta-stats-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stat-item-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat-item-cta:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(102, 126, 234, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number-cta {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label-cta {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    opacity: 0.2;
    animation: float-rotate 20s ease-in-out infinite;
    pointer-events: none;
}

.floating-element-1 {
    top: -30px;
    right: -30px;
    color: #fbbf24;
}

.floating-element-2 {
    bottom: -20px;
    left: -20px;
    color: #10b981;
    animation-delay: -10s;
}

@keyframes float-rotate {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: translate(20px, -20px) rotate(180deg);
        opacity: 0.4;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cta-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cta-visual {
        order: -1;
    }

    .cta-stats-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .cta-stats-card {
        padding: 25px;
    }

    .stat-item-cta {
        padding: 15px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-number-cta {
        font-size: 1.6rem;
    }

    .cta-trust {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.6rem;
    }

    .cta-badge {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .stat-item-cta {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .floating-element {
        display: none;
    }
}


/* ================================
   Contact Section Styles
================================ */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.contact-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.08) 50%, transparent 100%);
    filter: blur(60px);
}

.contact-circle-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
}

.contact-circle-2 {
    width: 600px;
    height: 600px;
    bottom: -200px;
    left: -200px;
}

.contact-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            linear-gradient(rgba(102, 126, 234, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(102, 126, 234, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
}

/* Section Content */
.contact-section .container {
    position: relative;
    z-index: 2;
}

/* Section Header */
.contact-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-section .section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 15px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.contact-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.contact-section .section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-5px);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.25) 0%, rgba(118, 75, 162, 0.25) 100%);
    transform: scale(1.05);
}

.contact-card-content {
    flex: 1;
}

.contact-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.contact-card-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 12px 0;
}

.contact-card-link {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    margin: 6px 0;
    transition: all 0.3s ease;
}

.contact-card-link:hover {
    color: #667eea;
}

.contact-card-link.secondary-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Map */
.contact-map {
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

/* Social Media */
.contact-social {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
}

.social-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
}

/* Form Header */
.form-header {
    margin-bottom: 30px;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.form-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Form Group */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.form-label svg {
    color: #667eea;
}

/* Form Inputs */
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-select {
    cursor: pointer;
}

.form-select option {
    background: #1a1a2e;
    color: #ffffff;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.form-submit-btn {
    font-family: 'Vazirmatn';
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.form-submit-btn:active {
    transform: translateY(0);
}

/* Success Message */
.form-success-message {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #10b981;
    font-size: 0.95rem;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   Responsive Design
================================ */

/* Tablet */
@media (max-width: 1024px) {
    .contact-section {
        padding: 80px 0;
    }

    .contact-section .section-title {
        font-size: 2.2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .contact-form-wrapper {
        padding: 35px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-section .section-header {
        margin-bottom: 40px;
    }

    .contact-section .section-title {
        font-size: 1.8rem;
    }

    .contact-section .section-description {
        font-size: 1rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-map {
        height: 250px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-submit-btn {
        width: 100%;
        padding: 14px 30px;
    }

    .social-links {
        flex-wrap: wrap;
        gap: 12px;
    }

    .contact-circle-1 {
        width: 350px;
        height: 350px;
        top: -100px;
        right: -100px;
    }

    .contact-circle-2 {
        width: 400px;
        height: 400px;
        bottom: -150px;
        left: -150px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .contact-section .section-title {
        font-size: 1.6rem;
    }

    .contact-card-icon {
        width: 48px;
        height: 48px;
    }

    .contact-card-icon svg {
        width: 24px;
        height: 24px;
    }

    .form-submit-btn {
        font-size: 0.95rem;
        padding: 13px 25px;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }
}

/* ================================
   Footer Section
================================ */
.footer {
    background: linear-gradient(180deg, #0f0c29 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0 0;
}

.footer-content {
    position: relative;
    z-index: 2;
}

/* Background Shapes */
.footer-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
}

.footer-shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    top: -200px;
    right: -200px;
}

.footer-shape-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    bottom: -150px;
    left: -150px;
}

/* Footer Top */
.footer-top {
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

/* Footer Column */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Footer About */
.footer-about {
    max-width: 380px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo svg {
    width: 40px;
    height: 40px;
}

.footer-logo span {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.footer-social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

/* Footer Title */
.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a::before {
    content: '◀';
    font-size: 0.7rem;
    opacity: 0;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #667eea;
    padding-right: 8px;
}

.footer-links li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.footer-contact li svg {
    width: 22px;
    height: 22px;
    color: #667eea;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact li > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.footer-contact a,
.footer-contact span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #667eea;
}

/* Newsletter */
.footer-newsletter {
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-text {
    flex: 1;
}

.newsletter-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.newsletter-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Newsletter Form */
.newsletter-form {
    flex: 1;
    max-width: 500px;
    display: flex;
    gap: 12px;
}

.newsletter-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-input-wrapper svg {
    position: absolute;
    right: 18px;
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

.newsletter-input {
    width: 100%;
    padding: 14px 18px 14px 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
    padding: 14px 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(102, 126, 234, 0.4);
}

.newsletter-btn svg {
    width: 18px;
    height: 18px;
}

/* Newsletter Success */
.newsletter-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    color: #10b981;
    font-size: 0.95rem;
    animation: slideInRight 0.4s ease;
}

.newsletter-success svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-copyright p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #667eea;
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Trust Badges */
.footer-badges {
    display: flex;
    gap: 16px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    color: #10b981;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(102, 126, 234, 0.5);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* ================================
   Responsive Design
================================ */

/* Large Tablet */
@media (max-width: 1024px) {
    .footer {
        padding: 60px 0 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-about {
        max-width: 100%;
    }

    .newsletter-content {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
        padding: 35px;
    }

    .newsletter-form {
        max-width: 100%;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .footer {
        padding: 50px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-top {
        padding-bottom: 40px;
    }

    .footer-newsletter {
        padding: 40px 0;
    }

    .newsletter-content {
        padding: 30px 25px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .footer-badges {
        flex-direction: column;
        width: 100%;
    }

    .trust-badge {
        justify-content: center;
    }

    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .footer-logo span {
        font-size: 1.1rem;
    }

    .footer-title {
        font-size: 1rem;
    }

    .newsletter-title {
        font-size: 1.3rem;
    }

    .newsletter-content {
        padding: 25px 20px;
    }

    .footer-social {
        flex-wrap: wrap;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom-links .separator {
        display: none;
    }
}

/* ================================
   Mobile Call Button (Fixed)
================================ */

/* Show only on mobile */
.mobile-call-button {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: none;
    pointer-events: none;
}

/* Dual Call Buttons Container */
.dual-call-buttons {
    display: flex;
    gap: 0;
    width: 100%;
    pointer-events: auto;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
}

/* Call Button Base */
.call-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 16px 12px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
    outline: none;
}

.call-btn:hover {
    transform: translateY(-2px);
}

.call-btn:active {
    transform: translateY(0);
}

/* Phone Call Button */
.call-btn-phone {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    gap: 12px;
}

.call-btn-phone:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Consultation Button */
.call-btn-consultation {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.call-btn-consultation:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* Call Button Icon */
.call-btn-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: phoneRing 2s infinite;
    flex-shrink: 0;
}

.call-btn-icon svg {
    width: 22px;
    height: 22px;
}

/* Call Button Content */
.call-btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    flex: 1;
}

.call-btn-phone .call-btn-content {
    align-items: flex-start;
}

.call-btn-consultation .call-btn-content {
    align-items: center;
    text-align: center;
}

.call-btn-text {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.call-btn-number {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
    direction: ltr;
}

.call-btn-subtitle {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Pulse Animation for Phone Button */
.call-btn-pulse {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
    pointer-events: none;
}

.call-btn-pulse.pulse-2 {
    animation-delay: 1s;
}

/* Shine Effect for Consultation Button */
.call-btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
    pointer-events: none;
}

/* Floating Action Button */
.floating-actions {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 10000;
    pointer-events: auto;
}

/* FAB Toggle Button */
.fab-toggle {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fab-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.5);
}

.fab-toggle.active {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* FAB Icon (Hamburger) */
.fab-icon {
    width: 24px;
    height: 18px;
    position: relative;
}

.fab-icon .line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.line-1 { top: 0; }
.line-2 { top: 8px; }
.line-3 { top: 16px; }

.fab-toggle.active .line-1 {
    transform: rotate(45deg);
    top: 8px;
}

.fab-toggle.active .line-2 {
    opacity: 0;
}

.fab-toggle.active .line-3 {
    transform: rotate(-45deg);
    top: 8px;
}

/* FAB Menu */
.fab-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.fab-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* FAB Items */
.fab-item {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    transform: scale(0);
    animation: fabItemIn 0.3s ease forwards;
}

.fab-item:nth-child(1) { animation-delay: 0.1s; }
.fab-item:nth-child(2) { animation-delay: 0.2s; }
.fab-item:nth-child(3) { animation-delay: 0.3s; }
.fab-item:nth-child(4) { animation-delay: 0.4s; }

.fab-item svg {
    width: 22px;
    height: 22px;
}

.fab-item:hover {
    transform: scale(1.15);
}

/* FAB Item Colors */
.fab-call {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.fab-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.fab-telegram {
    background: linear-gradient(135deg, #0088cc 0%, #005577 100%);
}

.fab-form {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

/* Tooltips */
.fab-item::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.fab-item:hover::before {
    opacity: 1;
    visibility: visible;
}

/* FAB Overlay */
.fab-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.fab-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Call Popup - Update tel links */
.call-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.call-popup.show {
    opacity: 1;
    visibility: visible;
}

.call-popup-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.call-popup.show .call-popup-content {
    transform: scale(1);
}

.call-popup-close {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.call-popup-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

.call-popup-header {
    margin-bottom: 25px;
}

.call-popup-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #ffffff;
}

.call-popup-icon svg {
    width: 28px;
    height: 28px;
}

.call-popup-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.call-popup-header p {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.call-popup-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.call-popup-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.call-btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
}

.call-btn-secondary {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
}

.call-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.call-popup-btn svg {
    width: 18px;
    height: 18px;
}

.call-popup-features {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.popup-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #6b7280;
}

.popup-feature svg {
    width: 16px;
    height: 16px;
    color: #10b981;
}

/* ================================
   Animations
================================ */

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20% { transform: rotate(10deg); }
}

@keyframes pulse {
    0% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes fabItemIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateY(0);
    }
    40%, 43% {
        transform: translateY(-10px);
    }
    70% {
        transform: translateY(-5px);
    }
    90% {
        transform: translateY(-2px);
    }
}

/* ================================
   Mobile Only
================================ */
@media (max-width: 768px) {
    .mobile-call-button {
        display: block;
    }

    /* Hide desktop back to top on mobile */
    .back-to-top {
        display: none;
    }
}

@media (max-width: 480px) {
    .call-btn {
        padding: 14px 8px;
    }

    .call-btn-icon {
        width: 36px;
        height: 36px;
    }

    .call-btn-text {
        font-size: 0.9rem;
    }

    .call-btn-number {
        font-size: 0.75rem;
    }

    .call-btn-subtitle {
        font-size: 0.75rem;
    }

    .floating-actions {
        bottom: 100px;
        right: 15px;
    }

    .fab-toggle {
        width: 52px;
        height: 52px;
    }

    .call-popup-content {
        padding: 25px 20px;
    }

    .call-popup-actions {
        flex-direction: column;
    }

    .call-popup-features {
        flex-direction: column;
        gap: 10px;
    }
}

