/*============================================
    PROFESSIONAL JOURNEY TIMELINE STYLES
============================================*/
.professional-journey-section {
    padding: 100px 0;
    background: #0d0d0e;
    position: relative;
    overflow: hidden;
}

.professional-journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(252, 154, 75, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.timeline-wrapper {
    position: relative;
    max-width: 100%;
    margin: 60px 0 0;
    padding: 20px 0;
}

/* Timeline Center Line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, transparent, #fc9a4b 10%, #fc9a4b 90%, transparent);
    transform: translateX(-50%);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 10px 50px;
    box-sizing: border-box;
}

.timeline-item.left {
    left: 0;
    text-align: left;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

/* Timeline Dot on the Line */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fc9a4b;
    border: 4px solid #0d0d0e;
    border-radius: 50%;
    top: 35px;
    z-index: 2;
    box-shadow: 0 0 0 3px rgba(252, 154, 75, 0.3);
    transition: all 0.3s ease;
}

.timeline-item.left::after {
    right: -10px;
}

.timeline-item.right::after {
    left: -10px;
}

.timeline-item:hover::after {
    background: #fff;
    box-shadow: 0 0 0 5px rgba(252, 154, 75, 0.5);
    transform: scale(1.2);
}

/* Timeline Content Card - Matching glass-card style from Resume section */
.timeline-content {
    background: linear-gradient(135deg, rgba(26, 26, 27, 0.8) 0%, rgba(37, 37, 39, 0.8) 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(252, 154, 75, 0.15);
    border-radius: 20px;
    padding: 25px 30px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(252, 154, 75, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: rgba(252, 154, 75, 0.5);
    box-shadow: 0 15px 40px rgba(252, 154, 75, 0.15);
}

.timeline-content:hover::before {
    opacity: 1;
}

/* Year Badge */
.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #fc9a4b, #e8892e);
    color: #0d0d0e;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 25px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Timeline Icon */
.timeline-icon {
    position: absolute;
    top: 7px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1a1a1b, #252527);
    border: 2px solid #fc9a4b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fc9a4b;
    font-size: 14px;
    z-index: 3;
}

.timeline-item.left .timeline-icon {
    right: -33px;
}

.timeline-item.right .timeline-icon {
    left: -55px;
}

.timeline-content:hover .timeline-icon {
    background: #fc9a4b;
    color: #0d0d0e;
    transform: scale(1.1);
}

/* Timeline Title */
.timeline-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1.3;
}

/* Timeline Organization */
.timeline-org {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fc9a4b;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Timeline Description */
.timeline-description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
        text-align: left !important;
    }
    
    .timeline-item.left::after,
    .timeline-item.right::after {
        left: 20px !important;
        right: auto !important;
    }
    
    .timeline-item.left,
    .timeline-item.right {
        left: 0;
    }
    
    .timeline-item.left .timeline-icon,
    .timeline-item.right .timeline-icon {
        left: -45px !important;
        right: auto !important;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-title {
        font-size: 18px;
    }
    
    .timeline-description {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .professional-journey-section {
        padding: 60px 0;
    }
    
    .timeline-wrapper {
        margin-top: 40px;
    }
    
    .timeline-item {
        padding-left: 55px;
        padding-right: 10px;
    }
    
    .timeline-item::after {
        left: 12px !important;
        width: 16px;
        height: 16px;
    }
    
    .timeline-item.left .timeline-icon,
    .timeline-item.right .timeline-icon {
        left: -40px !important;
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .timeline-content {
        padding: 15px;
    }
    
    .timeline-year {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .timeline-title {
        font-size: 16px;
    }
    
    .timeline-org {
        font-size: 12px;
    }
    
    .timeline-description {
        font-size: 12px;
    }
}

/*============================================
    CONTACT SECTION STYLES
============================================*/
.contact-premium {
    padding: 100px 0;
    background: #0d0d0e;
    position: relative;
}

.contact-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(252, 154, 75, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, #1a1a1b 0%, #252527 100%);
    border: 1px solid rgba(252, 154, 75, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-form-wrapper .form-group {
    margin-bottom: 0;
}

.contact-form-wrapper .form-label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fc9a4b;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form-wrapper .form-control {
    width: 100%;
    padding: 15px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(252, 154, 75, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form-wrapper .form-control:focus {
    outline: none;
    border-color: #fc9a4b;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(252, 154, 75, 0.1);
}

.contact-form-wrapper .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form-wrapper textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0d0d0e;
    background: linear-gradient(135deg, #fc9a4b, #e8892e);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(252, 154, 75, 0.3);
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(252, 154, 75, 0.4);
    background: linear-gradient(135deg, #ffab6b, #fc9a4b);
}

.contact-submit-btn:active {
    transform: translateY(-1px);
}

/* Contact Section Responsive */
@media (max-width: 991px) {
    .contact-premium {
        padding: 60px 0;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 575px) {
    .contact-form-wrapper {
        padding: 20px 15px;
    }
    
    .contact-form-wrapper .form-control {
        padding: 12px 15px;
    }
    
    .contact-submit-btn {
        padding: 14px 30px;
        font-size: 14px;
    }
}

/*============================================
    ENHANCED SKILLS SECTION STYLES
============================================*/

/* Premium Resume/Skills Section */
.premium-resume-section {
    padding: 100px 0;
    background: #0d0d0e;
    position: relative;
    overflow: hidden;
}

.premium-resume-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(252, 154, 75, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Section Header Styles */
.premium-resume-section .section-header {
    margin-bottom: 50px;
}

.premium-resume-section .section-subtitle {
    display: inline-block;
    color: #fc9a4b;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    padding: 0 20px;
}

.premium-resume-section .section-subtitle::before,
.premium-resume-section .section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 10px;
    height: 2px;
    background: #fc9a4b;
    transform: translateY(-50%);
}

.premium-resume-section .section-subtitle::before {
    left: 0;
}

.premium-resume-section .section-subtitle::after {
    right: 0;
}

.premium-resume-section .section-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

/* Glass Card Styles */
.glass-card {
    background: linear-gradient(135deg, rgba(26, 26, 27, 0.9) 0%, rgba(37, 37, 39, 0.9) 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(252, 154, 75, 0.15);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(252, 154, 75, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(252, 154, 75, 0.5);
    box-shadow: 0 20px 50px rgba(252, 154, 75, 0.15);
}

.glass-card:hover::before {
    opacity: 1;
}

/* Skills Wrapper */
.skills-wrapper {
    height: 100%;
}

.skills-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fc9a4b;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.skills-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #fc9a4b, transparent);
    border-radius: 3px;
}

/* Philosophy Items */
.philosophy-item {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    transform: translateX(5px);
    background: rgba(252, 154, 75, 0.15) !important;
}

.philosophy-item h4 {
    transition: all 0.3s ease;
}

.philosophy-item:hover h4 {
    transform: translateX(5px);
}

/* Skill Progress Cards */
.skill-progress-card {
    background: linear-gradient(135deg, rgba(26, 26, 27, 0.8) 0%, rgba(37, 37, 39, 0.8) 100%);
    border: 1px solid rgba(252, 154, 75, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-progress-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #fc9a4b, #e8892e);
    border-radius: 4px 0 0 4px;
    opacity: 0.7;
}

.skill-progress-card:hover {
    transform: translateX(5px);
    border-color: rgba(252, 154, 75, 0.3);
    background: linear-gradient(135deg, rgba(40, 40, 42, 0.9) 0%, rgba(50, 50, 52, 0.9) 100%);
}

.skill-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.skill-progress-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.skill-progress-title i {
    color: #fc9a4b;
    font-size: 18px;
    width: 35px;
    height: 35px;
    background: rgba(252, 154, 75, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-progress-title span {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.skill-progress-percentage {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fc9a4b;
}

.skill-progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #fc9a4b, #ffab6b);
    border-radius: 10px;
    position: relative;
    transition: width 1s ease-in-out;
    box-shadow: 0 0 10px rgba(252, 154, 75, 0.5);
}

.skill-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4));
    border-radius: 10px;
}

/* Key Skill Tags */
.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.skill-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(252, 154, 75, 0.1);
    border: 1px solid rgba(252, 154, 75, 0.2);
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.skill-tag i {
    color: #fc9a4b;
    font-size: 12px;
}

.skill-tag:hover {
    background: rgba(252, 154, 75, 0.2);
    border-color: #fc9a4b;
    transform: translateY(-2px);
}

/* Impact Stats */
.impact-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-stats .stat {
    text-align: center;
    flex: 1;
}

.impact-stats .stat h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #fc9a4b;
    margin: 0;
    line-height: 1;
}

.impact-stats .stat span {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

/* Skills Section Responsive */
@media (max-width: 991px) {
    .premium-resume-section {
        padding: 60px 0;
    }
    
    .premium-resume-section .section-title {
        font-size: 32px;
    }
    
    .glass-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .skills-title {
        font-size: 20px;
    }
    
    .impact-stats {
        flex-wrap: wrap;
    }
    
    .impact-stats .stat {
        flex: 0 0 calc(33.333% - 15px);
    }
    
    .impact-stats .stat h3 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .premium-resume-section .section-title {
        font-size: 26px;
    }
    
    .premium-resume-section .section-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .glass-card {
        padding: 20px;
    }
    
    .skills-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .philosophy-item {
        padding: 12px 15px !important;
        margin-bottom: 12px !important;
    }
    
    .philosophy-item h4 {
        font-size: 14px !important;
    }
    
    .philosophy-item p {
        font-size: 13px !important;
    }
    
    .impact-stats .stat {
        flex: 0 0 calc(50% - 10px);
    }
    
    .impact-stats .stat h3 {
        font-size: 24px;
    }
    
    .impact-stats .stat span {
        font-size: 10px;
    }
    
    .skill-progress-card {
        padding: 15px;
    }
    
    .skill-progress-title i {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .skill-progress-title span {
        font-size: 13px;
    }
    
    .skill-progress-percentage {
        font-size: 16px;
    }
}
.glass-card::before {
    pointer-events: none;
}

.contact-form-wrapper {
    position: relative;
    z-index: 10;
}

.contact-premium::before,
.professional-journey-section::before,
.premium-resume-section::before {
    pointer-events: none;
    z-index: 0;
}