/* Missing Service/Expertise Styles - RESTORED */

.expertise-section {
    padding: 10vh 0;
    position: relative;
    z-index: 2;
}

.service-card {
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 2rem;
    color: var(--accent-glow);
    margin-bottom: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 12px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    margin-top: auto;
    transition: 0.3s;
}

.btn-link i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.service-card:hover .btn-link {
    color: var(--accent-glow);
}

.service-card:hover .btn-link i {
    transform: translateX(5px);
}

.project-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.project-item {
    display: flex;
    flex-direction: column;
}

.project-info {
    margin-bottom: 1.5rem;
}

.project-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.project-info p {
    color: var(--text-muted);
}

.project-image {
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .project-list {
        grid-template-columns: 1fr;
    }
}

/* Spacing Fixes */
.section-header {
    margin-bottom: 5rem;
}

.section-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-top: 1.5rem;
}

/* Contact Wizard Styles */

/* Hide default radio buttons */
.option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns for better balance */
    gap: 1.5rem;
}

.option-card {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.option-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.option-card.selected {
    border-color: var(--accent-glow);
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.opt-icon {
    color: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.opt-icon i {
    width: 32px;
    height: 32px;
}

.opt-label {
    font-size: 1rem;
    font-weight: 500;
}

/* Budget Grid */
.budget-options {
    grid-template-columns: repeat(2, 1fr);
}

.budget-card {
    padding: 1.5rem;
    flex-direction: row;
    /* Horizontal alignment for budget */
    justify-content: center;
}

/* Progress Bar */
.contact-wizard {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
}

.wizard-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 3rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--accent-glow);
    width: 25%;
    /* Start at 25% (Step 1 of 3 roughly) */
    transition: width 0.5s ease;
}

/* Form Inputs */
.input-group label {
    pointer-events: none;
    /* Allow clicking through label to input */
}

/* Textarea Fix */
.input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 0;
    color: white;
    font-family: inherit;
    font-size: 1.2rem;
    outline: none;
    resize: vertical;
    min-height: 40px;
}

.input-group textarea:focus~label,
.input-group textarea:not(:placeholder-shown)~label {
    top: -1rem;
    font-size: 0.8rem;
    color: var(--accent-glow);
}

/* Contact Section Padding */
.contact-section {
    padding: 10vh 0;
}

/* Navigation Buttons */
.step-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    align-items: center;
}

.btn-text {
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    padding-bottom: 2px;
    transition: 0.3s;
}

.btn-text:hover {
    color: white;
    border-color: white;
}