/* Developer Profile Specific Styles */
.dev-profile-hero {
    position: relative;
    overflow: hidden;
    height: 98vh !important;
    display: flex;
    justify-content: center;
    margin-top: -120px;
}

.dev-profile-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M20,20 L80,20 L80,80 L20,80 Z" fill="none" stroke="%23ba942e" stroke-width="0.5" stroke-opacity="0.1"/></svg>');
    opacity: 0.3;
}

.dev-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 10px 30px var(--shadow-medium);
    object-fit: cover;
    transition: var(--transition-smooth);
}

.dev-avatar:hover {
    transform: scale(1.05);
}

.dev-name {
    color: var(--text);
}

.dev-position {
    color: #6c757d;
}

.dev-action-buttons {
    margin-top: 2rem;
}

.dev-subtitle {
    color: var(--secondary);
}

.dev-description {
    line-height: 1.8;
}

.dev-quick-info {
    margin-top: 2rem;
}

.dev-info-label {
    display: block;
    margin-bottom: 0.25rem;
}

.dev-info-value {
    font-size: 1.1rem;
}

/* Stats Section */
.dev-stats {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px var(--shadow-light);
    margin-top: -50px;
    position: relative;
    z-index: 1;
}

.dev-stat-item {
    text-align: center;
    padding: 15px;
}

.dev-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 5px;
}

.dev-stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Info Cards */
.dev-info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    height: 100%;
}

.dev-info-card:hover {
    box-shadow: 0 10px 25px var(--shadow-medium);
    border-color: var(--border-gold);
}

.dev-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
}

.dev-card-title {
    margin-bottom: 15px;
    color: var(--text);
}

.dev-card-text {
    color: #666;
    line-height: 1.6;
}

/* Project Cards */
.dev-project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: var(--transition-smooth);
    height: 100%;
    border: 1px solid var(--border-light);
}

.dev-project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
    border-color: var(--border-gold);
}

.dev-project-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.dev-project-card:hover .dev-project-image {
    transform: scale(1.05);
}

.dev-project-content {
    padding: 1.5rem;
}

.dev-project-title {
    color: var(--text);
    margin-bottom: 0.75rem;
}

.dev-project-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
}

.dev-project-meta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.dev-project-meta-item {
    text-align: center;
}

.dev-project-investment {
    color: var(--secondary);
    font-size: 1.2rem;
}

.dev-project-meta-label {
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* Project Badges */
.dev-project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.dev-badge-completed {
    background: #28a745;
    color: white;
}

.dev-badge-ongoing {
    background: var(--gradient-gold);
    color: white;
}

.dev-badge-upcoming {
    background: #17a2b8;
    color: white;
}

/* Filter Buttons */
.dev-filter-container {
    flex-wrap: wrap;
    gap: 0.5rem;
}

.dev-filter-btn {
    transition: var(--transition-smooth);
}

.dev-filter-btn.active {
    background: var(--gradient-gold);
    color: white;
    border-color: var(--secondary);
}

/* Timeline */
.dev-timeline {
    position: relative;
    padding-left: 30px;
}

.dev-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-light);
}

.dev-timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 20px;
}

.dev-timeline-item::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondary);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--border-gold);
}

.dev-timeline-event {
    color: var(--text);
    margin-bottom: 0.25rem;
}

.dev-timeline-year {
    font-size: 0.9rem;
}

.dev-timeline-description {
    color: #666;
    line-height: 1.6;
}

/* Awards */
.dev-awards-grid {
    display: flex;
    flex-wrap: wrap;
}

.dev-award-col {
    margin-bottom: 1.5rem;
}

.dev-award-icon {
    color: var(--secondary);
}

.dev-award-name {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.dev-award-organization {
    color: #6c757d;
}

/* Contact Form */
.dev-contact-form {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.dev-form-label {
    color: var(--text);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.dev-form-input,
.dev-form-select,
.dev-form-textarea {
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 12px 15px;
    transition: var(--transition-smooth);
}

.dev-form-input:focus,
.dev-form-select:focus,
.dev-form-textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.25rem rgba(186, 148, 46, 0.25);
}

.dev-form-submit {
    transition: var(--transition-smooth);
}

.dev-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(186, 148, 46, 0.2);
}

/* Contact Info */
.dev-contact-info {
    margin-top: 3rem;
}

.dev-contact-item {
    padding: 1rem;
}

.dev-contact-icon {
    color: var(--secondary);
}

.dev-contact-title {
    margin: 1rem 0 0.5rem;
    color: var(--text);
}

.dev-contact-detail {
    line-height: 1.6;
    color: #6c757d;
}

/* Animations */
.dev-profile-animate {
    opacity: 0;
    transform: translateY(30px);
    animation: devFadeInUp 0.6s ease-out forwards;
}

@keyframes devFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Titles */
.section-title {
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .dev-avatar {
        width: 150px;
        height: 150px;
    }

    .dev-stat-number {
        font-size: 2rem;
    }

    .dev-profile-hero {
        min-height: 60vh;
        padding-top: 80px;
    }

    .dev-contact-form {
        padding: 25px;
    }

    .dev-timeline {
        padding-left: 20px;
    }

    .dev-filter-container {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .dev-action-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .dev-action-buttons .btn {
        width: 100%;
        margin: 0;
    }

    .dev-quick-info .col-md-4 {
        margin-bottom: 1.5rem;
    }
}