/* Component Styles */

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-xl);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: var(--weight-semibold);
    font-size: var(--text-body);
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition-normal) var(--ease-in-out);
    min-height: 44px;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--deep-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

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

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
}

.btn-gold:hover {
    background: #c49563;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

/* ========== SERVICE CARDS ========== */
.service-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: var(--border-width) solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal) var(--ease-in-out);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gold);
    transition: height var(--transition-normal) var(--ease-out);
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: var(--weight-black);
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.service-card h3 {
    margin-bottom: var(--space-sm);
}

.service-card p {
    color: var(--gray);
    line-height: var(--line-relaxed);
}

/* ========== PROCESS STEPS ========== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--light-gray));
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: var(--weight-bold);
    font-size: 1.25rem;
    margin: 0 auto var(--space-md);
    position: relative;
    z-index: 1;
}

.process-step h3 {
    margin-bottom: var(--space-xs);
    font-size: var(--text-h4);
}

.process-step p {
    color: var(--gray);
    font-size: var(--text-small);
}

/* ========== TECH STACK GRID ========== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--space-md);
}

.tech-item {
    padding: var(--space-md);
    background: var(--cream);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: var(--weight-semibold);
    color: var(--navy);
    transition: all var(--transition-normal) var(--ease-in-out);
}

.tech-item:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

/* ========== CASE STUDY CARD ========== */
.case-study {
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    position: relative;
    overflow: hidden;
}

.case-study::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--gold) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    pointer-events: none;
}

.case-label {
    color: var(--gold);
    font-weight: var(--weight-semibold);
    font-size: var(--text-small);
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-study h3 {
    margin-bottom: var(--space-md);
}

.case-study h4 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--navy);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.stat-card {
    padding: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-md);
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: var(--weight-black);
    color: var(--navy);
    margin-bottom: var(--space-xs);
    line-height: 1;
}

.stat-label {
    color: var(--gray);
    font-size: var(--text-small);
}

/* ========== CONTACT INFO CARDS ========== */
.info-card {
    background: var(--cream);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.info-card h4 {
    margin-bottom: var(--space-xs);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.info-card p {
    color: var(--gray);
}

/* ========== LOCATION TAGS ========== */
.location-tags {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.location-tag {
    padding: var(--space-sm) var(--space-md);
    background: var(--white);
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: var(--text-small);
    color: var(--navy);
}

/* ========== BADGES ========== */
.badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: var(--gold);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: var(--text-tiny);
    font-weight: var(--weight-semibold);
}

/* ========== FEATURE LIST ========== */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: var(--space-xs) 0;
    padding-left: var(--space-lg);
    position: relative;
    color: var(--gray);
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: var(--radius-full);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-step:nth-child(3)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .btn {
        width: 100%;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .process-step::after {
        display: none;
    }

    .case-study {
        padding: var(--space-xl);
    }

    .service-card {
        padding: var(--space-lg);
    }
}
