/* Main CSS - Philipp Schmidt Portfolio */

/* Color Variables - Philipp Schmidt Corporate Identity */
:root {
    --primary-blue: #4169E1;      /* Royal Blue from logo */
    --secondary-orange: #FFA500;   /* Orange from logo */
    --dark-bg: #1e1e1e;           /* Dark background */
    --light-text: #ffffff;        /* White text */
    --gray-text: #cccccc;         /* Light gray text */
    --accent-color: #FFA500;      /* Orange accent */
    --hover-color: #5a7cfa;       /* Lighter blue for hover */
}

/* Base Styles */
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--light-text);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 15px;
    line-height: 1.7;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--hover-color);
}

/* Utility Classes */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.white-space-50 {
    height: 50px;
}

.white-space-30 {
    height: 30px;
}

/* Page Layout */
.page {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.page-content {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
}

/* Header/Sidebar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2a2a2a 100%);
    border-right: 1px solid #333;
    z-index: 1000;
    overflow-y: auto;
}

.header-content {
    padding: 30px;
    text-align: center;
}

/* Profile Photo */
.header-photo {
    margin-bottom: 30px;
}

.header-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--primary-blue);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.header-photo img:hover {
    transform: scale(1.05);
}

/* Header Titles */
.header-titles {
    margin-bottom: 30px;
}

.header-titles h2 {
    font-size: 1.8rem;
    color: var(--light-text);
    margin-bottom: 10px;
}

.header-subtitle {
    position: relative;
    height: 30px;
    overflow: hidden;
}

/* Text Rotation */
.text-rotation {
    position: relative;
    height: 30px;
}

.text-rotation .item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.text-rotation .item.active {
    opacity: 1;
}

.text-rotation .item h4 {
    color: var(--secondary-orange);
    font-size: 1rem;
    margin: 0;
}

/* Social Links */
.social-links {
    margin-bottom: 40px;
}

.social-row {
    margin-bottom: 15px;
}

.social-row:last-child {
    margin-bottom: 0;
}

.social-links ul {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links li a:hover {
    background: var(--secondary-orange);
    transform: translateY(-3px);
}

/* Navigation */
.main-menu {
    margin-bottom: 40px;
}

.main-menu li {
    margin-bottom: 5px;
}

.main-menu li a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: var(--gray-text);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.main-menu li a:hover,
.main-menu li.active a {
    background: var(--primary-blue);
    color: white;
    transform: translateX(5px);
}

.main-menu li a .menu-icon {
    margin-right: 15px;
    font-size: 1.2rem;
}

.main-menu li a .link-text {
    font-weight: 500;
}

/* Skills */
.header-skills {
    margin-bottom: 30px;
    text-align: left;
}

.header-skills h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--light-text);
}

.header-skills h3 span {
    color: var(--secondary-orange);
}

.skill-item {
    margin-bottom: 20px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.skill-info h4 {
    font-size: 0.9rem;
    margin: 0;
    color: var(--gray-text);
}

.skill-info .skill-percentage {
    font-size: 0.9rem;
    color: var(--secondary-orange);
}

.skill-container {
    height: 6px;
    background: #333;
    border-radius: 3px;
    overflow: hidden;
}

.skill-container .skill-percentage {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-orange));
    border-radius: 3px;
    transition: width 1s ease;
}

.skill-85 { width: 85%; }
.skill-90 { width: 90%; }
.skill-95 { width: 95%; }
.skill-100 { width: 100%; }

/* Copyright */
.header-copyright {
    font-size: 0.8rem;
    color: #666;
    margin-top: 30px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    width: 30px;
    height: 30px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
    cursor: pointer;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Navigation Arrows */
.lmpixels-arrows-nav {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 1000;
}

.lmpixels-arrow-right,
.lmpixels-arrow-left {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lmpixels-arrow-right:hover,
.lmpixels-arrow-left:hover {
    background: var(--secondary-orange);
    transform: scale(1.1);
}

.lmpixels-arrow-right i,
.lmpixels-arrow-left i {
    color: white;
    font-size: 1.2rem;
}

/* Content Area */
.content-area {
    margin-left: 300px;
    width: calc(100% - 300px);
    position: relative;
    top: 0;
}

.animated-sections {
    position: relative;
    width: 100%;
    top: 0;
}

.animated-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 200px 60px 60px 60px;
    box-sizing: border-box;
    display: none;
    top: 0;
}

.animated-section.active {
    display: block;
    position: relative;
    top: 0;
}

.animated-section.start-page {
    display: block;
    position: relative;
    top: 0;
}

.section-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Page Titles */
.page-title {
    margin-bottom: 50px;
}

.page-title h2 {
    font-size: 3rem;
    color: var(--light-text);
    position: relative;
    display: inline-block;
}

.page-title h2 span {
    color: var(--secondary-orange);
}

.page-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-blue);
}

/* Block Titles */
.block-title {
    margin-bottom: 40px;
}

.block-title h3 {
    font-size: 2rem;
    color: var(--light-text);
}

.block-title h3 span {
    color: var(--secondary-orange);
}

.block-title p {
    color: var(--gray-text);
    margin-top: 10px;
}

/* Home Section */
.start-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2a2a2a 100%);
}

.title-block h2 {
    font-size: 4rem;
    color: var(--light-text);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.sp-subtitle {
    margin-bottom: 40px;
}

.sp-subtitle .text-rotation .item {
    font-size: 1.5rem;
    color: var(--secondary-orange);
}

.home-logo {
    margin: 40px 0;
    animation: fadeIn 1.5s ease;
    text-align: center;
}

.home-logo img {
    max-width: 300px;
    height: auto;
}

.home-tagline h3 {
    font-size: 1.2rem;
    color: var(--gray-text);
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.5s both;
}

/* Info Lists */
.info-list ul {
    list-style: none;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.info-list .title {
    font-weight: 600;
    color: var(--gray-text);
}

.info-list .value {
    color: var(--light-text);
}

/* Info Blocks with Icons */
.info-list-w-icon {
    margin-bottom: 30px;
}

.info-block-w-icon {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.ci-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ci-icon:hover {
    background: var(--secondary-orange);
    transform: scale(1.1);
}

.ci-icon i {
    color: white;
    font-size: 1.5rem;
}

.ci-text h4 {
    color: var(--light-text);
    margin-bottom: 10px;
}

.ci-text p {
    color: var(--gray-text);
    line-height: 1.6;
}

.ci-text ul {
    margin-top: 15px;
    padding-left: 20px;
}

.ci-text ul li {
    color: var(--gray-text);
    margin-bottom: 5px;
    position: relative;
}

.ci-text ul li::before {
    content: '▸';
    color: var(--secondary-orange);
    position: absolute;
    left: -20px;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-blue);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    gap: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 10px;
    width: 12px;
    height: 12px;
    background: var(--secondary-orange);
    border-radius: 50%;
    border: 3px solid var(--dark-bg);
}

.left-part {
    min-width: 200px;
}

.item-period {
    color: var(--secondary-orange);
    font-weight: 600;
    margin-bottom: 5px;
}

.item-company {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.divider {
    width: 1px;
    background: #333;
    margin: 0 20px;
}

.right-part {
    flex: 1;
}

.item-title {
    color: var(--light-text);
    margin-bottom: 15px;
}

/* Certificates Grid */
.certificates-grid {
    margin-top: 30px;
}

.certificate-item {
    background: #2a2a2a;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    border: 2px solid transparent;
}

.certificate-item:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.cert-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.certificate-item:hover .cert-icon {
    background: var(--secondary-orange);
}

.cert-icon i {
    color: white;
    font-size: 1.5rem;
}

.certificate-item h6 {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-area {
        margin-left: 0;
        width: 100%;
    }
    
    .header {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .header.mobile-menu-open {
        transform: translateX(0);
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .lmpixels-arrows-nav {
        display: none;
    }
    
    .animated-section {
        padding: 120px 20px 30px 20px;
    }
    
    .title-block h2 {
        font-size: 2.5rem;
    }
    
    .page-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-item::before {
        left: -32px;
    }
    
    .divider {
        display: none;
    }
    
    .info-block-w-icon {
        flex-direction: column;
        text-align: center;
    }
    
    .ci-icon {
        margin: 0 auto 20px;
    }
}

@media (max-width: 480px) {
    .animated-section {
        padding: 20px 15px;
    }
    
    .title-block h2 {
        font-size: 2rem;
    }
    
    .home-logo img {
        max-width: 200px;
    }
    
    .header-content {
        padding: 20px;
    }
    
    .header-photo img {
        width: 120px;
        height: 120px;
    }
}

/* Animation Classes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #2a2a2a;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-orange);
}

/* Selection Styling */
::selection {
    background: var(--primary-blue);
    color: white;
}

::-moz-selection {
    background: var(--primary-blue);
    color: white;
}


/* Extended Home Section Styles */
.home-content {
    margin-top: 40px;
    padding: 0 20px;
}

.home-description {
    text-align: center;
    margin-bottom: 40px;
}

.home-description .lead {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 0;
}

/* Home Statistics */
.home-stats {
    margin-bottom: 50px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Core Competencies */
.home-competencies {
    margin-bottom: 40px;
}

.home-competencies h4 {
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
    font-size: 20px;
}

.competency-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.competency-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.competency-item i {
    color: var(--primary-blue);
    font-size: 18px;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.competency-item span {
    color: #ffffff;
    font-size: 14px;
}

/* Industry Focus */
.home-industries {
    margin-bottom: 40px;
    text-align: center;
}

.home-industries h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 20px;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.industry-tag {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.industry-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(65, 105, 225, 0.3);
}

/* Call to Action */
.home-cta {
    margin-bottom: 40px;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.1), rgba(255, 165, 0, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-cta h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 22px;
}

.home-cta p {
    color: #cccccc;
    margin-bottom: 25px;
    font-size: 16px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(65, 105, 225, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #1e1e1e;
    transform: translateY(-2px);
}

/* Recent Achievements */
.home-achievements {
    margin-bottom: 40px;
}

.home-achievements h4 {
    color: #ffffff;
    margin-bottom: 25px;
    text-align: center;
    font-size: 20px;
}

.achievement-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.achievement-icon {
    margin-right: 20px;
    margin-top: 5px;
}

.achievement-icon i {
    color: var(--secondary-orange);
    font-size: 24px;
}

.achievement-content h5 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
}

.achievement-content p {
    color: #cccccc;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive Design for Home Section */
@media (max-width: 768px) {
    .home-content {
        padding: 0 10px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .competency-item {
        margin-bottom: 10px;
        padding: 8px;
    }
    
    .competency-item span {
        font-size: 13px;
    }
    
    .industry-tags {
        gap: 8px;
    }
    
    .industry-tag {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .home-cta {
        padding: 20px;
    }
    
    .home-cta h4 {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
        text-align: center;
    }
    
    .achievement-item {
        flex-direction: column;
        text-align: center;
    }
    
    .achievement-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .home-stats .col-xs-6 {
        width: 50%;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .competency-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .competency-item i {
        margin-right: 0;
        margin-bottom: 8px;
        font-size: 20px;
    }
}


/* Extended About Me Section Styles */
.about-extended {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-extended h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.about-extended p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-extended em {
    color: var(--secondary-orange);
    font-style: italic;
    font-weight: 500;
}

/* Professional Values */
.professional-values {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.professional-values h4 {
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
    font-size: 16px;
}

.value-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.value-item i {
    color: var(--primary-blue);
    font-size: 16px;
    margin-right: 12px;
    width: 18px;
    text-align: center;
}

.value-item span {
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
}

/* Working Methodology */
.working-methodology {
    margin-bottom: 40px;
}

.methodology-step {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.methodology-step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.methodology-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 15px;
    opacity: 0.8;
}

.methodology-step h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.methodology-step p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Experience Timeline */
.experience-timeline {
    margin-bottom: 40px;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-blue), var(--secondary-orange));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--primary-blue);
    border-radius: 50%;
    border: 3px solid #1e1e1e;
}

.timeline-date {
    color: var(--secondary-orange);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content h4 {
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
}

.timeline-content h5 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
}

.timeline-content p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for About Me Section */
@media (max-width: 768px) {
    .about-extended {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .professional-values {
        margin-top: 20px;
        padding: 15px;
    }
    
    .value-item {
        margin-bottom: 10px;
        padding: 6px;
    }
    
    .value-item span {
        font-size: 12px;
    }
    
    .methodology-step {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .step-number {
        font-size: 36px;
        margin-bottom: 10px;
    }
    
    .methodology-step h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .methodology-step p {
        font-size: 13px;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-item {
        padding-left: 30px;
        margin-bottom: 30px;
    }
    
    .timeline-content h4 {
        font-size: 16px;
    }
    
    .timeline-content h5 {
        font-size: 13px;
    }
    
    .timeline-content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .about-extended h4 {
        font-size: 16px;
    }
    
    .professional-values h4 {
        font-size: 14px;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }
    
    .value-item i {
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .methodology-step {
        padding: 15px 10px;
    }
    
    .step-number {
        font-size: 28px;
    }
    
    .methodology-step h4 {
        font-size: 15px;
    }
    
    .timeline-item {
        padding-left: 25px;
    }
    
    .timeline-date {
        font-size: 12px;
    }
}


/* Extended Services Section Styles */
.services-grid {
    margin-bottom: 40px;
}

.service-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
    text-align: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 48px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.service-item:hover .service-icon i {
    color: var(--secondary-orange);
    transform: scale(1.1);
}

.service-content {
    flex: 1;
}

.service-content h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.service-description {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.service-features {
    margin-bottom: 20px;
}

.service-features h5 {
    color: var(--primary-blue);
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: #cccccc;
    font-size: 13px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-orange);
    font-weight: bold;
}

.service-benefits {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-benefits h5 {
    color: var(--secondary-orange);
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 600;
}

.service-benefits p {
    color: #cccccc;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Specialized Service Packages */
.specialized-services {
    margin-bottom: 40px;
}

.package-item {
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.1), rgba(255, 165, 0, 0.1));
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.package-item:hover {
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.2), rgba(255, 165, 0, 0.2));
    transform: translateY(-3px);
}

.package-header {
    text-align: center;
    margin-bottom: 20px;
}

.package-header i {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    display: block;
}

.package-header h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.package-content p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: center;
}

.package-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-content li {
    color: #cccccc;
    font-size: 13px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.package-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-orange);
    font-weight: bold;
}

/* Target Audience & Approach */
.target-audience {
    margin-bottom: 40px;
}

.audience-block, .approach-block {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
}

.audience-block h3, .approach-block h3 {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 22px;
    text-align: center;
}

.audience-item, .approach-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.audience-item:hover, .approach-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.audience-item i {
    color: var(--primary-blue);
    font-size: 24px;
    margin-right: 15px;
    margin-top: 5px;
    min-width: 30px;
}

.audience-item h4, .approach-item h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.audience-item p, .approach-item p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.approach-number {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    margin-right: 15px;
    min-width: 40px;
}

/* Service Process */
.service-process {
    margin-bottom: 40px;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-blue);
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.step-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    min-width: 60px;
}

.step-icon i {
    color: #ffffff;
    font-size: 24px;
}

.step-content h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Services Section */
@media (max-width: 768px) {
    .service-item {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .service-icon i {
        font-size: 36px;
    }
    
    .service-content h4 {
        font-size: 18px;
    }
    
    .service-description {
        font-size: 13px;
    }
    
    .package-item {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .package-header i {
        font-size: 28px;
    }
    
    .package-header h4 {
        font-size: 16px;
    }
    
    .audience-block, .approach-block {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .audience-item, .approach-item {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .audience-item h4, .approach-item h4 {
        font-size: 15px;
    }
    
    .process-step {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .step-icon {
        margin-right: 0;
        margin-bottom: 15px;
        width: 50px;
        height: 50px;
    }
    
    .step-icon i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .service-item {
        padding: 15px;
    }
    
    .service-icon i {
        font-size: 32px;
    }
    
    .service-content h4 {
        font-size: 16px;
    }
    
    .package-item {
        padding: 15px;
    }
    
    .audience-item, .approach-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .audience-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .approach-number {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .process-step {
        padding: 15px;
    }
}


/* Freelancermap Badge & Reviews */
.home-reviews {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-reviews h4 {
    color: #FFA500;
    margin-bottom: 25px;
    font-size: 24px;
    text-align: center;
}

.freelancermap-badge {
    text-align: center;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    display: inline-block;
    margin-left: 50%;
    transform: translateX(-50%);
}

.freelancermap-badge img {
    filter: none;
    transition: all 0.3s ease;
}

.freelancermap-badge:hover img {
    transform: scale(1.05);
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    border-left: 4px solid #4169E1;
    transition: all 0.3s ease;
}

.review-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.review-header {
    margin-bottom: 15px;
}

.review-header h5 {
    color: #4169E1;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.reviewer {
    color: #FFA500;
    font-size: 14px;
    font-style: italic;
}

.review-content p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 15px;
}

.review-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.highlight {
    background: linear-gradient(135deg, #4169E1, #FFA500);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .home-reviews {
        margin-top: 30px;
        padding: 20px;
    }
    
    .review-item {
        padding: 20px;
    }
    
    .review-highlights {
        justify-content: center;
    }
    
    .freelancermap-badge {
        margin-left: 0;
        transform: none;
        width: 100%;
        text-align: center;
    }
}


/* ===== RESPONSIVE DESIGN IMPROVEMENTS ===== */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .header {
        width: 280px;
    }
    
    .content-area {
        margin-left: 280px;
        width: calc(100% - 280px);
    }
    
    .animated-section {
        padding: 180px 40px 40px 40px;
    }
    
    .page-title h2 {
        font-size: 2.5rem;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .header {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1001;
    }
    
    .header.mobile-menu-show {
        transform: translateX(0);
    }
    
    .content-area {
        margin-left: 0;
        width: 100%;
    }
    
    .animated-section {
        padding: 120px 20px 30px 20px;
    }
    
    .page-title h2 {
        font-size: 2rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Navigation arrows repositioning */
    .lmpixels-arrows-nav {
        right: 20px;
    }
    
    .lmpixels-arrow-right,
    .lmpixels-arrow-left {
        width: 40px;
        height: 40px;
    }
}

/* Mobile Landscape */
@media (max-width: 640px) {
    .animated-section {
        padding: 20px 15px;
    }
    
    .title-block h2 {
        font-size: 2.5rem;
    }
    
    .page-title h2 {
        font-size: 1.8rem;
    }
    
    .block-title h3 {
        font-size: 1.5rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .animated-section {
        padding: 15px 10px;
    }
    
    .title-block h2 {
        font-size: 2rem;
    }
    
    .page-title h2 {
        font-size: 1.5rem;
    }
    
    .block-title h3 {
        font-size: 1.3rem;
    }
    
    .section-content {
        max-width: 100%;
    }
    
    /* Social links responsive */
    .social-links ul {
        gap: 10px;
    }
    
    .social-links li a {
        width: 35px;
        height: 35px;
    }
    
    /* Navigation arrows for mobile */
    .lmpixels-arrows-nav {
        right: 15px;
    }
    
    .lmpixels-arrow-right,
    .lmpixels-arrow-left {
        width: 35px;
        height: 35px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .animated-section {
        padding: 15px 8px 20px 8px;
    }
}

.section-content {
    max-width: 1000px;
    margin: 0 auto;
    min-height: calc(100vh - 120px); /* Account for padding */
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
    .animated-section,
    .text-rotation .item,
    .social-links li a,
    .main-menu li a {
        transition: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-blue: #0000FF;
        --secondary-orange: #FF8C00;
        --light-text: #FFFFFF;
        --gray-text: #CCCCCC;
    }
}

