/* ============================================
   get-started.css - Deecipher Technologies
   Get Started Page Styles
   Follows the same design system as about.css, careers.css
   Version: 2.0 | Production Ready
   ============================================ */

/* ============================================
   1. Hero Section (Original About Page Style)
   ============================================ */
.getstarted-hero-section {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.getstarted-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(26, 35, 126, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.section-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.25rem;
    font-family: var(--font-body);
}

.section-tag.center {
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    font-family: var(--font-heading);
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--neutral-500);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Stats Row */
.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 1rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    font-family: var(--font-heading);
    line-height: 1.2;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--neutral-500);
    font-weight: 500;
}

/* Testimonial Feature Card */
.testimonial-feature-card {
    background: var(--white);
    border-radius: 24px;
    padding: 1.75rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--neutral-200);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.testimonial-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.quote-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.quote-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    opacity: 0.4;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-blue);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 0.9rem;
    color: var(--primary-dark);
}

.author-info span {
    font-size: 0.75rem;
    color: var(--neutral-500);
}

/* ============================================
   2. Process Section
   ============================================ */
.process-section {
    padding: 80px 0;
    background: var(--white);
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-family: var(--font-heading);
}

.section-subheading {
    font-size: 1.1rem;
    color: var(--neutral-500);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-step-card {
    text-align: center;
    padding: 1.75rem;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.process-step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.step-number-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.step-icon {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 0.8rem;
    box-shadow: var(--shadow-sm);
    z-index: 3;
}

.process-step-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.process-step-card p {
    font-size: 0.85rem;
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-duration {
    font-size: 0.75rem;
    color: var(--primary-blue);
    font-weight: 500;
    background: rgba(26, 35, 126, 0.08);
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

/* ============================================
   3. Engagement Models Section
   ============================================ */
.engagement-section {
    padding: 80px 0;
    background: var(--neutral-100);
}

.engagement-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-sm);
    height: 100%;
    position: relative;
}

.engagement-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.engagement-card.featured {
    border: 2px solid var(--primary-blue);
    transform: scale(1.02);
}

.engagement-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.engagement-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.engagement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.1) 0%, rgba(123, 44, 191, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.engagement-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.engagement-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.engagement-price {
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.engagement-card p {
    font-size: 0.85rem;
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.engagement-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 1.5rem;
}

.engagement-features li {
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--neutral-600);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.engagement-features li i {
    color: var(--primary-green);
    font-size: 0.8rem;
}

.btn-outline-engagement {
    background: transparent;
    color: var(--primary-blue);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 2px solid var(--primary-blue);
    width: 100%;
}

.btn-outline-engagement:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
}

.btn-primary-custom {
    background: var(--primary-blue);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: none;
    width: 100%;
    cursor: pointer;
}

.btn-primary-custom:hover {
    background: var(--neon-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ============================================
   4. Deliverables Section
   ============================================ */
.deliverables-section {
    padding: 80px 0;
    background: var(--white);
}

.deliverable-card {
    text-align: center;
    padding: 1.75rem;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.deliverable-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.deliverable-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: inline-block;
}

.deliverable-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.deliverable-card p {
    font-size: 0.85rem;
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   5. Tech Stack Section
   ============================================ */
.tech-stack-section {
    padding: 80px 0;
    background: var(--neutral-100);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-category h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-blue);
    display: inline-block;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.tech-items span {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--neutral-700);
    transition: all 0.3s ease;
}

.tech-items span:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   6. Pricing Section
   ============================================ */
.pricing-section {
    padding: 80px 0;
    background: var(--white);
}

.pricing-card {
    text-align: center;
    padding: 1.75rem;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.pricing-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: inline-block;
}

.pricing-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.pricing-range {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pricing-card li {
    padding: 0.35rem 0;
    font-size: 0.8rem;
    color: var(--neutral-600);
    position: relative;
    padding-left: 1.25rem;
}

.pricing-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
}

/* ============================================
   7. FAQ Section
   ============================================ */
.faq-section {
    padding: 80px 0;
    background: var(--neutral-100);
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 1rem;
    border: 1px solid var(--neutral-200);
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(26, 35, 126, 0.05);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-blue);
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--neutral-600);
    line-height: 1.6;
    border-top: 1px solid var(--neutral-200);
}

/* ============================================
   8. Contact Section
   ============================================ */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-card {
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--neutral-200);
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    padding: 3rem;
    color: white;
}

.contact-info .section-tag {
    color: rgba(255, 255, 255, 0.8);
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-detail i {
    font-size: 1.25rem;
    width: 30px;
    opacity: 0.8;
}

.contact-detail div {
    display: flex;
    flex-direction: column;
}

.contact-detail strong {
    font-size: 0.8rem;
    opacity: 0.7;
    font-weight: 500;
}

.contact-detail span {
    font-size: 0.9rem;
}

.contact-form {
    padding: 3rem;
}

.form-label {
    font-weight: 500;
    font-size: 0.8rem;
    color: var(--neutral-700);
    margin-bottom: 0.35rem;
}

.form-control,
.form-select {
    padding: 0.7rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--neutral-300);
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
    outline: none;
}

/* ============================================
   9. Modal Styles
   ============================================ */
.modal-content {
    border-radius: 24px;
    border: none;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: white;
    border: none;
    padding: 1.25rem 1.5rem;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-title {
    font-weight: 700;
}

.modal-body {
    padding: 1.5rem;
}

.modal-body ul {
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

.modal-footer {
    border-top: 1px solid var(--neutral-200);
    padding: 1rem 1.5rem;
}

.btn-secondary {
    background: var(--neutral-200);
    color: var(--neutral-700);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
}

.btn-secondary:hover {
    background: var(--neutral-300);
}

/* ============================================
   10. Responsive Styles
   ============================================ */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .stats-row {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .getstarted-hero-section {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .stats-row {
        gap: 1rem;
        justify-content: space-between;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .section-heading {
        font-size: 1.75rem;
    }
    
    .section-subheading {
        font-size: 1rem;
    }
    
    .engagement-card.featured {
        transform: scale(1);
    }
    
    .engagement-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .stats-row {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 0.5rem);
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .process-step-card {
        padding: 1.25rem;
    }
    
    .engagement-card {
        padding: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.25rem;
    }
    
    .contact-detail {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-detail i {
        margin: 0 auto;
    }
}

/* ============================================
   11. Utility Classes
   ============================================ */
.bg-light {
    background-color: var(--neutral-100) !important;
}

.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-0 {
    margin-top: 0;
}

/* Animation Overrides */
[data-aos] {
    pointer-events: auto !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Print Styles */
@media print {
    .info-strip,
    .navbar,
    .contact-section,
    .modal,
    footer {
        display: none;
    }
    
    .getstarted-hero-section,
    .process-section,
    .engagement-section,
    .deliverables-section,
    .tech-stack-section,
    .pricing-section,
    .faq-section {
        padding: 20px 0;
        break-inside: avoid;
    }
    
    .engagement-card,
    .pricing-card {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }
}