
/* ===================================================================
   SERVICES PAGE UPGRADES (NEWBUILD & CARPENTRY)
   =================================================================== */

/* Process Flow (Engineering -> Commissioning) */
.ps-process-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 12px;
    box-shadow: inset 0 0 20px rgba(0, 229, 255, 0.02);
}

.ps-process-item {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--highlight-cyan, #00e5ff);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ps-process-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
}

/* Bullet Grid for Scope of Work */
.ps-bullet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
    list-style: none;
    padding: 0;
}

.ps-bullet-grid li {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 3px solid var(--secondary, #f2a900);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
}

.ps-bullet-grid li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

/* Newbuild Masonry Gallery */
.ps-newbuild-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 35px;
}

.ps-newbuild-gallery img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    cursor: pointer;
}

.ps-newbuild-gallery img:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 229, 255, 0.2);
    z-index: 2;
    position: relative;
}

.ps-newbuild-span-2 {
    grid-column: span 2;
    height: 300px;
}

.ps-newbuild-normal {
    height: 200px;
}

/* Glassmorphism Cards */
.ps-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.ps-glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.ps-glass-card h3 {
    color: var(--secondary, #f2a900);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Accordion Toggle */
.ps-accordion-title {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    transition: color 0.3s ease;
}

.ps-accordion-title:hover {
    color: var(--highlight-cyan, #00e5ff) !important;
}

.ps-accordion-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ps-accordion-content.active {
    max-height: 100px;
    opacity: 1;
    margin-top: 10px;
    margin-bottom: 20px;
}

.ps-accordion-icon {
    font-size: 0.8em;
    color: var(--highlight-cyan, #00e5ff);
    transition: transform 0.4s ease;
}

.ps-accordion-icon.active {
    transform: rotate(180deg);
}

/* ===================================================================
   MOBILE RESPONSIVENESS UPGRADES
   =================================================================== */

@media (max-width: 991px) {
    .ps-newbuild-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .ps-newbuild-span-2 {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .ps-newbuild-gallery {
        grid-template-columns: 1fr !important;
    }
    .ps-newbuild-span-2 {
        grid-column: span 1;
        height: 250px;
    }
    .ps-newbuild-normal {
        height: 200px;
    }
    
    .ps-glass-card {
        padding: 20px;
    }
    
    .ps-process-flow {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .ps-process-arrow {
        transform: rotate(90deg);
        margin-left: 20px;
    }
    
    .ps-bullet-grid {
        grid-template-columns: 1fr !important;
    }
}

.ps-detailed-section {
    padding: 0 40px 80px 40px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .ps-detailed-section {
        padding: 0 20px 40px 20px;