/* ================================
   CLIENT-PAGES.CSS
   ALL styles for client showcase pages
   ================================ */

/* ================================
   BREADCRUMB NAVIGATION
   ================================ */
.breadcrumb {
    padding: 100px 0 20px;
    background: rgba(248, 246, 240, 0.9);
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #666;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-list a {
    color: #8b4513;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: #a0522d;
    text-decoration: underline;
}

.breadcrumb-separator {
    color: #999;
}

.breadcrumb-current {
    color: #2c2c2c;
    font-weight: 600;
}

/* ================================
   PROJECT HERO SECTION
   ================================ */
.project-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(245, 245, 220, 0.95) 0%, rgba(240, 230, 210, 0.95) 100%);
    padding: 120px 0 80px;
    position: relative;
    border-bottom: 3px solid rgba(139, 69, 19, 0.2);
}

.project-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(139, 69, 19, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(160, 82, 45, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.project-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.project-category {
    display: inline-block;
    background: linear-gradient(45deg, #8b4513, #a0522d);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.project-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.project-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.project-meta {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.project-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a4a4a;
}

.project-meta-item i {
    color: #8b4513;
    font-size: 1.2rem;
}

.project-meta-label {
    font-weight: 600;
    color: #2c2c2c;
}

/* ================================
   PROJECT CONTENT + SIDEBAR LAYOUT
   ================================ */
.project-content {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.9);
}

.project-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Main Content Area */
.project-main {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.project-main h2 {
    text-align: left;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(139, 69, 19, 0.2);
}

.project-main h3 {
    color: #8b4513;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.project-main p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.project-main ul {
    list-style: none;
    margin: 1.5rem 0;
}

.project-main li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a4a4a;
}

.project-main li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: bold;
}

/* Sidebar */
.project-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: rgba(248, 246, 240, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #8b4513;
    margin-bottom: 2rem;
}

.sidebar-card h3 {
    margin-bottom: 1.5rem;
    color: #8b4513;
    font-size: 1.4rem;
}

.sidebar-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.sidebar-info-item:last-child {
    border-bottom: none;
}

.sidebar-label {
    font-weight: 600;
    color: #2c2c2c;
}

.sidebar-value {
    color: #666;
    text-align: right;
}

.sidebar-cta {
    margin-top: 1.5rem;
}

.sidebar-cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* ================================
   PROJECT PROCESS SECTION
   ================================ */
.project-process {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.9);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: rgba(248, 246, 240, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(139, 69, 19, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.15);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #8b4513, #a0522d);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.process-step h4 {
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.process-step p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* ================================
   TESTIMONIAL SECTION
   ================================ */
.project-testimonial {
    padding: 80px 0;
    background: rgba(248, 246, 240, 0.9);
}

.testimonial-card {
    max-width: 900px;
    margin: 3rem auto 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #8b4513;
    position: relative;
}

.testimonial-quote {
    font-size: 3rem;
    color: rgba(139, 69, 19, 0.2);
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-left: 2rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #8b4513, #a0522d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.testimonial-info h4 {
    margin-bottom: 0.3rem;
    color: #2c2c2c;
}

.testimonial-info p {
    color: #8b4513;
    font-size: 0.9rem;
    margin: 0;
}

/* ================================
   RELATED PROJECTS SECTION
   ================================ */
.related-projects {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.9);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.related-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.related-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 69, 19, 0.3);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.2);
}

.related-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.related-card:hover img {
    transform: scale(1.05);
}

.related-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
}

.related-overlay h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: white;
}

.related-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* ================================
   BACK TO TOP BUTTON
   ================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #8b4513, #a0522d);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(45deg, #a0522d, #cd853f);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

/* ================================
   MOBILE RESPONSIVE - CLIENT SHOWCASE
   ================================ */

@media screen and (max-width: 768px) {
    /* Hero Section */
    .project-hero {
        min-height: auto;
        padding: 100px 20px 60px;
    }
    
    .project-hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .project-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .project-category {
        font-size: 0.85rem;
        padding: 6px 15px;
    }
    
    .project-meta {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .project-meta-item {
        font-size: 0.9rem;
        justify-content: center;
        text-align: center;
    }
    
    /* Content Layout */
    .project-content {
        padding: 60px 0;
    }
    
    .project-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-main {
        padding: 1.5rem;
    }
    
    .project-main h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .project-main h3 {
        font-size: 1.4rem;
    }
    
    .project-main p {
        font-size: 1rem;
    }
    
    /* Sidebar */
    .project-sidebar {
        position: relative;
        top: 0;
    }
    
    .sidebar-card {
        padding: 1.5rem;
    }
    
    .sidebar-card h3 {
        font-size: 1.3rem;
    }
    
    /* Process Section */
    .project-process {
        padding: 60px 0;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    /* Testimonial Section */
    .project-testimonial {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        padding-left: 0;
    }
    
    .testimonial-author {
        padding-left: 0;
    }
    
    .testimonial-quote {
        font-size: 2rem;
        top: 10px;
        left: 10px;
    }
    
    /* Related Projects */
    .related-projects {
        padding: 60px 0;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .breadcrumb {
        padding: 90px 0 15px;
    }
    
    .breadcrumb-list {
        font-size: 0.85rem;
    }
    
    .project-hero h1 {
        font-size: 1.5rem;
    }
    
    .project-main {
        padding: 1rem;
    }
    
    .sidebar-card {
        padding: 1rem;
    }
}