.service-detail-page {
    background: #020405;
    min-height: 100vh;
    min-height: 100svh;
}

/* Fix for top white space */
body:has(.service-detail-page) {
    background-color: #020405;
    margin: 0;
}

/* Hero Section Enhancements */
@keyframes heroBgZoom {
    from {
        transform: scale(1.1);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tagReveal {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, #0066CC, transparent);
    top: -10%;
    left: -10%;
}

.service-hero {
    height: 70vh;
    height: 70svh;
    margin: 0 2rem 2rem;
    /* Side and bottom margins */
    padding-top: 4rem;
    /* Top padding inside the box */
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.service-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
}

.service-hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.service-tag {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #0066CC;
    margin-bottom: 6rem;
    /* Još više odmaknuto gore */
    animation: tagReveal 1.5s ease-out both;
}

.service-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.8;
    margin-bottom: 2rem;
    letter-spacing: -0.05em;
    animation: titleReveal 2.2s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.hero-divider {
    width: 60px;
    height: 3px;
    background: #0066CC;
    margin: 2rem auto;
    position: relative;
}

.hero-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: #0066CC;
    border-radius: 50%;
    box-shadow: 0 0 20px #0066CC;
}

/* Tech Overlays */
.hero-tech-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 102, 204, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 204, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 2;
    mask-image: radial-gradient(circle, black, transparent 80%);
}

.hero-tech-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0, 102, 204, 0.1), transparent);
    background-size: 100% 4px;
    animation: scanline 8s linear infinite;
    pointer-events: none;
}

@keyframes scanline {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

.hero-crosshairs {
    position: absolute;
    inset: 10%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 2;
    pointer-events: none;
}

.hero-crosshairs::before,
.hero-crosshairs::after {
    content: '';
    position: absolute;
    background: rgba(0, 102, 204, 0.3);
}

.hero-crosshairs::before {
    top: -10px;
    left: 50%;
    width: 1px;
    height: 20px;
}

.hero-crosshairs::after {
    left: -10px;
    top: 50%;
    width: 20px;
    height: 1px;
}

.hero-tech-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 102, 204, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 204, 0.3);
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #00d2ff;
    margin-bottom: 2rem;
    animation: fadeIn 2s ease forwards;
}

/* Hero Floating Glows */
.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 2;
}

.hero-glow-1 {
    top: -10%;
    left: -10%;
}

.hero-glow-2 {
    bottom: -10%;
    right: -10%;
}

/* Cinematic Service Hero */
.service-hero-cinematic {
    position: relative;
    height: 100vh;
    width: 100%;
    background: #000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-image-layer {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7) contrast(1.1);
    animation: slowZoom 30s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-overlay-cinematic {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 5, 10, 0.8) 0%,
            rgba(0, 5, 10, 0.4) 50%,
            rgba(0, 5, 10, 0.9) 100%);
}

.hero-noise-layer {
    position: absolute;
    inset: 0;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.2;
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* Header Data Panel */
.hero-header-data {
    position: absolute;
    top: 100px;
    left: 5%;
    right: 5%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
}

.hero-data-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.d-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #444;
    font-weight: 900;
}

.d-value {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: #0066CC;
}

.pulse-text {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Main Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    width: 90%;
}

.hero-pre-title {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.6em;
    color: #0066CC;
    margin-bottom: 2.5rem;
    font-weight: 800;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 12vw, 9rem);
    font-weight: 900;
    line-height: 0.85;
    margin-bottom: 4rem;
}

.outline-txt {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
}

.solid-txt {
    color: white;
}

.hero-title-line {
    width: 100px;
    height: 2px;
    background: #0066CC;
    margin: 0 auto;
    position: relative;
}

.hero-description {
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 3rem auto 0;
    line-height: 1.8;
}

/* Bottom Bar Specs */
.hero-bottom-bar {
    position: absolute;
    bottom: 4rem;
    left: 10%;
    right: 10%;
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    align-items: center;
    z-index: 10;
}

.hero-central-divider {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flowing-line {
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.flowing-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #0066CC, transparent);
    animation: lineFlow 2s infinite linear;
}

@keyframes lineFlow {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(200%);
    }
}

.spec-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.n-val {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
}

.n-lab {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: #444;
}

/* Scroll Prompt */
.scroll-prompt {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.scroll-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #0066CC);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: white;
    animation: scrollDown 2s infinite cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes scrollDown {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(300%);
    }
}

.scroll-prompt span {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #444;
    font-weight: 900;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-header-data {
        top: 80px;
    }

    .hero-main-title {
        font-size: 3.5rem;
    }

    .hero-bottom-bar {
        grid-template-columns: 1fr;
        gap: 2rem;
        bottom: 6rem;
    }

    .scroll-prompt {
        display: none;
    }
}

/* Scroll Indicator styles moved to style.css for global use */

.stat-num {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    color: #0066CC;
    letter-spacing: 1px;
}

.stat-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

/* Info Grid (Enhanced Background) */
.service-info-grid {
    padding: 12rem 10%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.service-info-grid::before {
    content: 'MAINTENANCE';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 900;
    color: rgba(0, 102, 204, 0.03);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    letter-spacing: 0.1em;
}

.service-info-grid::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

.service-info-grid>* {
    position: relative;
    z-index: 5;
}

.info-card {
    padding: 2.5rem;
    background: #fcfcfc;
    border: 1px solid #eee;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-card:hover {
    border-color: #0066CC;
    transform: translateY(-5px);
}

/* Transformation Showcase */
.transformation-section {
    padding: 10rem 5%;
    background: #f8f9fa;
}

.transformation-grid {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    /* Skraćeno odvajanje */
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 6rem;
    align-items: center;
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
}

@media (max-width: 900px) {
    .project-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
        margin: 0 20px;
        /* Force margin from edges */
    }
}

@media (max-width: 380px) {
    .project-card {
        margin: 0 15px;
        padding: 1rem;
    }
}

.project-card:nth-child(even) {
    direction: rtl;
}

.project-card:nth-child(even) .project-info-content,
.project-card:nth-child(even) .comparison-container {
    direction: ltr;
}

.comparison-container,
.project-display {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    background: #1a1a1a;
    /* Removed all-transition to prevent resizing jump */
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Fluid Transition Overlays */
.gallery-temp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.static-compare {
    display: flex;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.static-compare>div {
    flex: 1;
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
    position: relative;
}

.static-compare:hover>div:not(:hover) {
    flex: 2;
    opacity: 0.6;
}

/* Class to lock the split during animation */
.static-compare.locking-split>div {
    flex: 1 !important;
    transition: none !important;
}

.static-compare>div:hover {
    flex: 8;
}

/* Removed old .gallery-controls block to avoid conflicts with the new overlay system */

/* .gallery-btn block removed as it's replaced by .gallery-nav */

.swipe-hint {
    display: none !important;
}

.swipe-hint::before {
    content: '← swipe →';
}

@keyframes swipeAnim {

    0%,
    100% {
        opacity: 0.2;
        transform: translateX(0);
    }

    50% {
        opacity: 1;
        transform: translateX(3px);
    }
}

.materials-minimal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.materials-minimal span {
    font-size: 0.75rem;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-btn:hover {
    color: #0066CC;
    transform: scale(1.1);
}

.gallery-indicators {
    display: flex;
    gap: 6px;
    pointer-events: auto;
}

.gallery-indicator {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.3s;
}

.gallery-indicator.active {
    background: #0066CC;
    width: 10px;
}

.compare-label {
    position: absolute;
    bottom: 8px;
    padding: 2px 6px;
    background: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.45rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
    border-radius: 2px;
    pointer-events: none;
}

.label-before {
    left: 8px;
}

.label-after {
    right: 8px;
}

.project-info-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.project-info-content h2 {
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    line-height: 1.1;
    color: #1a1a1a;
    /* Čist i jak tekst */
    min-height: 2.4em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-info-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    /* Tamniji tekst, nije više bled */
    margin-bottom: 2rem;
    min-height: 3.2em;
}

/* Full Projects (Restoration) */
.full-projects-section {
    padding: 10rem 10%;
    background: #0a0a0a;
    color: white;
}

.full-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 80%;
    margin: 0 auto;
}

.full-project-card {
    background: #151515;
    border: 1px solid #222;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.full-project-info {
    padding: 1.5rem;
}

.full-project-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.full-project-info p {
    font-size: 0.9rem;
    color: #888;
}

/* Sales Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}

.step-num {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(0, 102, 204, 0.05);
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* Contact Focus */
.contact-focus-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.contact-focus-info {
    padding: 5rem;
    background: rgba(0, 102, 204, 0.1);
}

.contact-focus-form {
    padding: 5rem;
    background: #111;
}

.contact-focus-form .form-group {
    position: relative;
    margin-bottom: 2.5rem;
}

.contact-focus-form input,
.contact-focus-form textarea {
    width: 100%;
    padding: 1rem 0;
    font-size: 1rem;
    color: white;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    outline: none;
    transition: 0.3s;
}

.contact-focus-form label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0.75rem;
    color: #888;
    pointer-events: none;
    transition: 0.3s;
    transform: translateY(-1.5rem);
}

.contact-focus-form input:focus~label,
.contact-focus-form input:valid~label,
.contact-focus-form textarea:focus~label,
.contact-focus-form textarea:valid~label {
    top: 0;
    transform: translateY(-1.5rem);
    font-size: 0.7rem;
    color: #0066CC;
}

.contact-focus-form input:focus,
.contact-focus-form textarea:focus {
    border-bottom: 1px solid #0066CC;
}

.file-upload-area {
    margin-bottom: 2.5rem;
}

.submit-btn-premium {
    width: 100%;
    padding: 1.5rem;
    background: #0066CC;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn-premium:hover {
    background: #0080ff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
}

/* Maintenance Schedule */
.maintenance-schedule-section {
    padding: 10rem 10%;
    background: #fff;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.interval-card {
    background: #fcfcfc;
    border: 1px solid #eee;
    padding: 2.5rem;
    position: relative;
    margin-bottom: 2rem;
}

/* Upload Zone */
.drop-zone-premium {
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
}

/* MOBILE OVERHAUL */
@media screen and (max-width: 768px) {
    .service-hero {
        height: 100vh !important;
        min-height: 100vh !important;
        padding: 8rem 5% 4rem !important;
        background-attachment: scroll !important;
        animation: none !important;
        /* No zoom to keep seamless transition */
    }

    .service-hero::after {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 1)) !important;
    }

    .service-hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem) !important;
        white-space: normal !important;
        line-height: 1 !important;
    }

    .service-hero p {
        font-size: 1.1rem !important;
        margin-bottom: 3rem !important;
    }

    .hero-stats {
        flex-direction: row !important;
        /* Keep row if possible or compact */
        flex-wrap: wrap;
        gap: 1.5rem !important;
        padding: 1.2rem !important;
        border-radius: 50px !important;
        width: 90% !important;
        margin: 0 auto !important;
        background: rgba(255, 255, 255, 0.05) !important;
    }

    .stat-item {
        flex: 1;
        min-width: 80px;
    }

    .stat-num {
        font-size: 1.1rem !important;
    }

    .stat-text {
        font-size: 0.55rem !important;
    }

    .stat-divider {
        display: none !important;
    }

    .service-info-grid {
        padding: 2.5rem 5% !important;
        /* Reduced from 4rem */
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        /* Smaller gap */
    }

    .info-card {
        padding: 1.5rem !important;
        /* Compact cards */
    }

    .info-card h3 {
        font-size: 1.3rem !important;
        margin-bottom: 0.5rem !important;
    }

    .info-card p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    .transformation-section {
        padding: 3.5rem 5% !important;
        /* Reduced from 5rem */
    }

    .transformation-grid {
        max-width: 100% !important;
        gap: 8rem !important;
    }

    .project-card {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        direction: ltr !important;
        padding: 1.5rem !important;
        background: #fff;
        border-radius: 12px;
    }

    .project-card:nth-child(even) .project-info-content {
        direction: ltr !important;
    }

    .project-info-content {
        padding: 0 !important;
        text-align: center !important;
        align-items: center !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .project-info-content h2 {
        font-size: 2rem !important;
    }

    .full-projects-section {
        padding: 3.5rem 5% !important;
        /* Reduced from 5rem */
    }

    .full-projects-section h2.section-title {
        font-size: 1.8rem !important;
        /* Scaled down */
        margin-bottom: 3rem !important;
    }

    .full-projects-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
        gap: 3rem !important;
    }

    .process-grid,
    .benefits-grid,
    .contact-focus-container,
    .schedule-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .contact-focus-info,
    .contact-focus-form {
        padding: 3rem 1.5rem !important;
    }

    .contact-focus-info h2 {
        font-size: 1.8rem !important;
    }

    .contact-method span:last-child {
        font-size: 1rem !important;
    }

    .maintenance-schedule-section {
        padding: 3.5rem 5% !important;
        /* Reduced from 5rem */
    }

    .schedule-header h2 {
        font-size: 1.8rem !important;
        /* Scaled down */
    }

    .interval-card {
        padding: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .interval-card h5 {
        font-size: 1.1rem !important;
    }

    .interval-list li {
        font-size: 0.85rem !important;
    }

    .step-num {
        font-size: 3.5rem !important;
        top: 0 !important;
    }

    .materials-minimal {
        gap: 0.6rem !important;
        justify-content: center !important;
        margin-top: 0.8rem !important;
    }

    .materials-minimal span {
        font-size: 0.65rem !important;
    }

    .swipe-hint {
        font-size: 0.55rem !important;
        margin-right: 0.5rem !important;
    }
}

@media screen and (max-width: 1366px) {
    .service-hero h1 {
        font-size: 4.5rem;
    }

    .transformation-grid {
        gap: 5rem;
        max-width: 90%;
    }

    .project-card {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* --- Service Detail Pages: Engineered Dark Theme --- */
.service-detail-page {
    background: #020405 !important;
    color: #ffffff;
    background-image:
        linear-gradient(rgba(0, 102, 204, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 204, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    /* Large blueprint grid */
}

/* Specific section overrides for depth */
.protocol-section {
    padding: 12rem 10%;
    background: #04080a;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(0, 102, 204, 0.15) 1px, transparent 0);
    background-size: 20px 20px;
    border-top: 1px solid rgba(0, 102, 204, 0.2);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.protocol-section .service-tag {
    margin-bottom: 2rem !important;
}

.protocol-section h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 5rem;
    color: white;
}

.protocol-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 6rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.protocol-step {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    position: relative;
    padding: 4rem 3rem;
    background: rgba(0, 102, 204, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(5px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.protocol-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #0066CC;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.protocol-step:hover::before {
    transform: scaleX(1);
}

.protocol-step:hover {
    background: rgba(0, 102, 204, 0.07);
    border-color: rgba(0, 102, 204, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.step-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(0, 102, 204, 0.08);
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    pointer-events: none;
    transition: all 0.5s ease;
}

.protocol-step:hover .step-number {
    color: #0066CC;
    opacity: 0.15;
    transform: translateY(10px);
}

.protocol-step h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    color: #fff;
    position: relative;
}

.protocol-step p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
}

/* Benefits / Opportunities Section */
.benefits-section {
    padding: 12rem 10%;
    position: relative;
    background: #020405;
}

.benefit-column-text h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    line-height: 1.1;
}

.benefit-column-text p {
    margin-bottom: 4rem;
    font-size: 1.1rem;
    max-width: 600px;
}

.technical-grid-expand {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 8rem;
    align-items: center;
}

.technical-standard-box {
    background: #050a0d;
    border: 1px solid rgba(0, 102, 204, 0.3);
    padding: 4rem;
    position: relative;
    box-shadow: 20px 20px 0px rgba(0, 102, 204, 0.1);
    transition: all 0.4s ease;
}

.technical-standard-box:hover {
    transform: translate(-5px, -5px);
    box-shadow: 25px 25px 0px rgba(0, 102, 204, 0.2);
}

.technical-standard-box::after {
    content: 'TECHNICAL LOG';
    position: absolute;
    top: -10px;
    right: 20px;
    background: #0066CC;
    color: #fff;
    font-size: 0.6rem;
    padding: 3px 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

/* Benefit Items - Desktop */
.benefit-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.benefit-icon {
    color: #0066CC;
    font-size: 1.5rem;
    background: rgba(0, 102, 204, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit-item h4 {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.benefit-item p {
    opacity: 0.6;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Engineered Info Cards (New Premium Design) */
.info-card {
    background: #050a0d !important;
    border: 1px solid rgba(0, 102, 204, 0.1) !important;
    color: white !important;
    padding: 4rem 3rem !important;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-top: 2px solid #0066CC;
    border-left: 2px solid #0066CC;
    opacity: 0.3;
}

.info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-bottom: 2px solid #0066CC;
    border-right: 2px solid #0066CC;
    opacity: 0.3;
}

.info-card:hover {
    background: #081014 !important;
    border-color: #0066CC !important;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.info-card .info-icon {
    font-size: 2.5rem;
    color: #0066CC;
    margin-bottom: 2.5rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: inline-block;
}

.info-card:hover .info-icon {
    transform: translateY(-8px);
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 102, 204, 0.8);
}

.info-card h3 {
    color: #fff !important;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.info-card p {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Contact CTA: Minimal Engineered */
.info-contact-minimal {
    padding: 10rem 0;
    background: #010203;
    text-align: center;
    border-top: 1px solid rgba(0, 102, 204, 0.2);
    background-image: linear-gradient(rgba(0, 102, 204, 0.05) 1px, transparent 1px);
    background-size: 100% 40px;
}

.info-contact-minimal h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: #fff;
    text-transform: uppercase;
}

.info-contact-minimal p {
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-method-item {
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-method-item i {
    color: #0066CC;
    margin-right: 15px;
}

.contact-method-item:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-5px);
}

/* COMPARISON CONTAINER - context for absolute positioning */
.comparison-container {
    position: relative !important;
    overflow: hidden;
    /* Ensure arrows don't spill out */
}

/* Gallery Controls - Full Overlay */
.gallery-controls {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none;
    /* Let clicks pass to nav buttons */
    z-index: 10;
}

/* Navigation Buttons (Arrows) */
.gallery-nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(5px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    color: white !important;
    font-size: 1.2rem !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding: 0 !important;
    opacity: 0.4;
    /* Slightly visible for discoverability */
    z-index: 20;
}

.gallery-nav.prev {
    left: 20px !important;
}

.gallery-nav.next {
    right: 20px !important;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-50%) scale(1.1) !important;
    /* Keep centered on scale */
}

/* Show arrows on hover */
.project-card:hover .gallery-nav,
.full-project-card:hover .gallery-nav {
    opacity: 1 !important;
}

/* Keep indicators at bottom - centered robustly */
.gallery-indicators {
    position: absolute !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    pointer-events: auto !important;
    z-index: 30 !important;
    /* Above everything else in the card */
}

/* Hide swipe hint as requested or by default in this clean system */
.gallery-controls .swipe-hint {
    display: none !important;
}

/* Keep arrows on Touch Devices but adjust visibility */
@media (hover: none) and (pointer: coarse) {
    .gallery-nav {
        opacity: 0.7 !important;
        width: 40px !important;
        height: 40px !important;
    }
}

@media screen and (max-width: 768px) {
    .service-hero-cinematic {
        height: 65vh !important;
        padding-top: 40px;
    }

    .scroll-indicator {
        display: none !important;
    }

    /* Re-enable spec bar but in a very minimal anchored line */
    .hero-bottom-bar {
        display: flex !important;
        grid-template-columns: none !important;
        left: 0;
        right: 0;
        justify-content: center;
        gap: 1.5rem;
        bottom: 2.5rem;
        opacity: 0.5;
    }

    .spec-node {
        flex-direction: row !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }

    .spec-node .n-val {
        font-size: 0.75rem !important;
        color: #0066CC !important;
    }

    .spec-node .n-lab {
        font-size: 0.55rem !important;
        letter-spacing: 0.1em !important;
    }

    /* Re-enable and style details to fill space better */
    .hero-description {
        display: block !important;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.4);
        max-width: 85%;
        margin: 2rem auto 0;
        line-height: 1.5;
        font-weight: 400;
    }

    .hero-title-line {
        display: block !important;
        width: 40px;
        height: 1px;
        background: #0066CC;
        margin: 1.5rem auto;
    }

    .hero-header-data {
        display: flex !important;
        top: 60px;
        border: none;
        padding: 0;
        justify-content: center;
    }

    .hero-data-item:first-child {
        display: none;
    }

    .hero-data-item:last-child {
        display: flex;
        align-items: center;
    }

    .hero-pre-title {
        font-size: 0.6rem;
        letter-spacing: 0.3em;
        margin-bottom: 1rem;
    }

    .hero-main-title {
        font-size: 2.6rem !important;
        line-height: 1;
        margin-bottom: 0;
        letter-spacing: -0.02em;
    }

    .spec-node {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .spec-node .n-val {
        font-size: 1.2rem;
    }

    .spec-node .n-lab {
        font-size: 0.6rem;
        letter-spacing: 0.1em;
    }

    .service-info-grid::before {
        font-size: 20vw;
        opacity: 0.05;
    }

    /* Fixed existing block name */
    .service-hero h1 {
        font-size: 2.8rem !important;
    }

    .protocol-section {
        padding: 5rem 5% !important;
    }

    .protocol-section h2 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 2rem !important;
    }

    .protocol-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 2rem !important;
        width: 100% !important;
        overflow: visible !important;
    }

    .protocol-step {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        padding: 2.5rem 1.5rem !important;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .benefits-section {
        padding: 5rem 5% !important;
    }

    .benefit-column-text {
        padding: 0 !important;
    }

    .benefit-column-text h2 {
        font-size: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .benefit-column-text>p {
        font-size: 1rem !important;
        line-height: 1.7 !important;
        margin-bottom: 3rem !important;
    }

    .technical-grid-expand {
        grid-template-columns: 1fr !important;
        gap: 4rem !important;
    }

    .technical-standard-box {
        padding: 2.5rem 1.5rem !important;
        box-shadow: 10px 10px 0px rgba(0, 102, 204, 0.1) !important;
    }

    .benefit-item {
        gap: 1.5rem !important;
        margin-bottom: 3.5rem !important;
        padding: 0 !important;
    }

    .benefit-item p {
        line-height: 1.8 !important;
        font-size: 0.95rem !important;
    }

    .benefit-icon {
        width: 55px !important;
        height: 55px !important;
        font-size: 1.3rem !important;
        flex-shrink: 0 !important;
    }

    .sales-contact-section {
        padding: 5rem 5% !important;
    }

    .contact-focus-container {
        grid-template-columns: 1fr !important;
        gap: 4rem !important;
    }

    .contact-focus-info h2 {
        font-size: 1.6rem !important;
        margin-bottom: 1.5rem !important;
    }

    .recruiting-label {
        font-weight: 800;
        font-size: 1rem !important;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .recruiting-label i {
        color: #0066CC;
    }

    .info-contact-minimal {
        padding: 5rem 5% !important;
    }

    .info-contact-minimal h2 {
        font-size: 1.8rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.3 !important;
    }

    .info-contact-minimal p {
        font-size: 1rem !important;
        line-height: 1.8 !important;
        margin-bottom: 2.5rem !important;
    }

    .info-contact-minimal .contact-methods {
        flex-direction: column !important;
        align-items: center;
        gap: 1.5rem !important;
        margin-top: 2rem !important;
    }

    .contact-method-item {
        padding: 1.2rem 2rem !important;
        width: calc(100% - 30px) !important;
        /* Proper margin on button */
        justify-content: center !important;
        font-size: 0.9rem !important;
        margin: 0 15px;
    }

    .full-projects-grid {
        grid-template-columns: 1fr !important;
        padding: 0 20px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .full-project-card {
        margin-bottom: 2rem;
    }
}

/* ===== REBUILT METHODOLOGY SECTION ===== */
.sales-process-rebuilt {
    padding: 4rem 0 4rem 0;
    /* Reduced bottom padding */
    background: #020405;
}

.method-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin-top: 1rem;
}

.method-steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method-row {
    display: flex;
    align-items: center;
    gap: 5%;
}

.method-row.reverse {
    flex-direction: row-reverse;
}

.method-content {
    flex: 1;
    position: relative;
    padding-left: 2rem;
}

.m-num {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    /* Clean solid white */
    opacity: 1;
    line-height: 1;
    display: block;
    margin-bottom: 4.5rem;
    letter-spacing: -1px;
    transition: all 0.4s ease;
}

/* Methodology Dividers */
.method-divider {
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.5), transparent);
    margin: 2rem auto;
    position: relative;
    overflow: hidden;
}

.method-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #0066CC, transparent);
    animation: dividerSlide 3s linear infinite;
}

@keyframes dividerSlide {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.m-num.glow-active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    -webkit-text-stroke: 2px rgba(0, 102, 204, 0.8);
    /* Stronger glow stroke */
    text-shadow: 0 0 60px rgba(0, 102, 204, 0.4);
}

@media (max-width: 768px) {
    .m-num {
        font-size: 3.5rem;
        color: #ffffff;
        opacity: 1;
        margin-bottom: 1rem;
        position: static;
        z-index: 1;
    }

    .method-row {
        padding: 5rem 0;
        min-height: 350px;
    }
}

.strip-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    opacity: 1;
}

.strip-title {
    font-size: 1.4rem;
    letter-spacing: 0.4em;
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    white-space: nowrap;
    position: relative;
    padding-bottom: 5px;
    background: linear-gradient(90deg, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gallery-info-strip {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 4rem;
    opacity: 0.8;
}

.method-content h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.method-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 500px;
}

/* Standardize methodology images */
.method-image-wrap {
    flex: 0.8;
    /* Make them narrower/smaller */
    height: 480px;
    /* Consistent height */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.method-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.method-row:hover .method-image-wrap img {
    transform: scale(1.05);
}

@media (max-width: 992px) {

    /* Hide the stats section as requested */
    .sales-stats-section {
        display: none !important;
    }

    /* Make the ticker even smaller on mobile */
    .flowing-contact-ticker {
        padding: 0.5rem 0 !important;
        border-width: 1px 0;
    }

    .ticker-item {
        font-size: 0.7rem !important;
        gap: 0.8rem;
        padding: 0 1.5rem;
    }

    /* Standardize all methodology images to same small format */
    .method-image-wrap {
        width: 100% !important;
        height: 180px !important;
        /* Slightly taller */
        /* Unified small format */
        opacity: 1 !important;
        /* Fully visible now */
        /* De-emphasized removed */
        margin-top: 1rem;
        border-radius: 8px;
    }

    /* Hide the very last image on the page (Benefits section) */
    .benefits-visual {
        display: none !important;
    }

    .method-row,
    .method-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .method-content {
        padding-left: 0;
    }

    .method-content p {
        margin: 0 auto;
    }

    .method-title {
        font-size: 2.2rem !important;
        letter-spacing: 0.1em !important;
        line-height: 1.2 !important;
        margin-top: 0.5rem !important;
        font-weight: 900 !important;
    }

    .section-header {
        margin-bottom: 4rem !important;
    }

    .m-num {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .method-content h4 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .m-num {
        font-size: 3rem;
    }

    .strip-title {
        white-space: normal !important;
        font-size: 1.1rem !important;
        letter-spacing: 0.2em !important;
        line-height: 1.4 !important;
    }
    
    .gallery-info-strip {
        gap: 1.5rem !important;
        align-items: flex-start !important;
        margin-bottom: 2rem !important;
    }
}

/* ===== SALES PROCESS (METHODOLOGY) ===== */
.sales-process-section {
    padding: 12rem 0;
    background: #020405;
    position: relative;
    overflow: hidden;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    position: relative;
    z-index: 5;
}

.process-step {
    background: rgba(0, 102, 204, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 3rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.process-step:hover {
    background: rgba(0, 102, 204, 0.05);
    border-color: #0066CC;
    transform: translateY(-10px);
}

.step-num {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 102, 204, 0.1);
    position: absolute;
    top: 2rem;
    right: 2rem;
    line-height: 1;
}

.process-step h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.process-step p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== QUICK CONTACT TICKER (Faster & Denser) ===== */
.flowing-contact-ticker {
    width: 100%;
    background: #0066CC;
    padding: 1.2rem 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-track {
    display: flex;
    animation: tickerFlow 15s linear infinite;
    /* Twice as fast */
    width: max-content;
}

/* New: Trust Divider Section for Contrast */
.sales-trust-banner {
    padding: 8rem 0;
    background: linear-gradient(90deg, #050a0f 0%, #020405 100%);
    border-bottom: 1px solid rgba(0, 102, 204, 0.1);
    text-align: center;
    position: relative;
}

.trust-content h3 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.trust-accent-line {
    width: 150px;
    height: 4px;
    background: #0066CC;
    margin: 0 auto;
    position: relative;
    border-radius: 2px;
}

.trust-accent-line::after {
    content: '';
    position: absolute;
    inset: -5px;
    background: #0066CC;
    filter: blur(15px);
    opacity: 0.3;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 4rem;
    color: white;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ticker-item i {
    font-size: 1rem;
    opacity: 0.7;
}

.ticker-sep {
    color: rgba(255, 255, 255, 0.3);
}

@keyframes tickerFlow {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===== MATERIAL IN ACTION GALLERIES ===== */
.material-action-gallery {
    margin-top: 6rem;
    width: 100%;
}

/* ===== PREMIUM STAGGERED GALLERY ===== */
.material-action-gallery {
    margin-top: 8rem;
    width: 100%;
}

.gallery-grid-premium {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item-premium {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-item-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item-premium:hover img {
    transform: scale(1.08);
}

/* Bento Layout Logic */
.gallery-item-premium.feat {
    grid-column: span 8;
    grid-row: span 2;
}

.gallery-item-premium.side {
    grid-column: span 4;
    grid-row: span 1;
}

.gallery-item-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 5, 15, 0.8) 0%, transparent 60%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.gallery-item-premium:hover::after {
    opacity: 0.9;
}

.gallery-label {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    z-index: 5;
    color: white;
}

.gallery-label .label-tag {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #0066CC;
    font-weight: 900;
    display: block;
    margin-bottom: 0.5rem;
}

.gallery-label .label-title {
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 992px) {
    .gallery-grid-premium {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .gallery-item-premium {
        height: 450px;
        width: 100%;
    }
}

.gallery-title {
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
    opacity: 0.6;
    text-transform: uppercase;
    font-weight: 900;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-label {
        opacity: 1;
        transform: none;
        font-size: 0.75rem;
    }
}

/* Osveženje Page Specifics */
.project-card.large-focus {
    grid-template-columns: 1.5fr 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
    background: #0a0c10;
    border-color: rgba(0, 102, 204, 0.1);
}

.project-card.large-focus .comparison-container {
    border-radius: 0;
}

.project-card.large-focus .project-info-content {
    padding: 4rem;
    color: white;
}

.project-card.large-focus h2 {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 2rem;
}

.project-card.large-focus p {
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

@media (max-width: 992px) {
    .project-card.large-focus {
        grid-template-columns: 1fr;
    }

    .project-card.large-focus .project-info-content {
        padding: 3rem 2rem;
    }

    .project-card.large-focus h2 {
        font-size: 2.5rem;
    }
}

/* Contact Form Premium */
.premium-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-group label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #444;
    font-weight: 900;
}

.premium-form input,
.premium-form textarea {
    background: #0a0c10;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.2rem;
    color: white;
    font-family: inherit;
    transition: all 0.3s ease;
}

.premium-form input:focus,
.premium-form textarea:focus {
    border-color: #0066CC;
    outline: none;
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.1);
}

.submit-btn-premium {
    background: #0066CC;
    color: white;
    border: none;
    padding: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.submit-btn-premium:hover {
    background: #0052a3;
    gap: 1.5rem;
}

.contact-info-new h2 {
    font-size: 4rem;
    line-height: 1;
    color: white;
    margin: 2rem 0;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
}

.c-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    color: #888;
    font-weight: 600;
    transition: color 0.3s ease;
}

.c-method i {
    color: #0066CC;
}

.c-method:hover {
    color: white;
}

/* Sun Tracker Simple Gallery - Updated for Larger View */
.project-simple-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 in row for desktop as requested */
    gap: 20px;
    margin-top: 3rem;
}

.gallery-item-simple {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    background: #111;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.gallery-item-simple img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item-simple:hover img {
    transform: scale(1.08);
}

/* Highlighted Item */
.highlighted-gallery-item {
    width: 100%;
    aspect-ratio: 21/9;
    margin-bottom: 3rem;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.highlighted-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.highlighted-gallery-item:hover img {
    transform: scale(1.05);
}

.highlight-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 3rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.highlighted-gallery-item:hover .highlight-overlay {
    opacity: 1;
}

.highlight-overlay span {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    border-left: 3px solid #0066CC;
    padding-left: 1.5rem;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    z-index: 999999;
    /* Way above everything */
    display: none;
    justify-content: center;
    align-items: center;
    padding: 0;
    backdrop-filter: blur(20px);
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1000000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox-close:hover {
    background: #0066CC;
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 3rem;
    padding: 20px;
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.3s, transform 0.3s;
}

.lightbox-nav:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

/* Contact Minimal */
.contact-section-minimal {
    padding: 15rem 0;
    background: #050505;
    text-align: center;
}

.contact-minimal-box {
    max-width: 800px;
    margin: 0 auto;
}

.contact-action-buttons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 5rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    text-align: left;
}

.action-btn i {
    font-size: 1.8rem;
    color: #0066CC;
}

.btn-info {
    display: flex;
    flex-direction: column;
}

.btn-label {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: #666;
    font-weight: 700;
}

.btn-data {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 800;
}

.action-btn:hover {
    background: rgba(0, 102, 204, 0.1);
    border-color: #0066CC;
    transform: translateY(-10px);
}

@media (max-width: 1024px) {
    .project-simple-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-action-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Full Screen Side-by-Side Comparison */
.full-screen-comparison {
    width: 100%;
    height: 70vh;
    display: flex;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-half-side {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.comparison-half-side:hover {
    transform: scale(1.02);
}

.comparison-half-side.pre {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.side-label {
    position: absolute;
    bottom: 4rem;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    border-radius: 4px;
}

.comparison-half-side.pre .side-label {
    right: 2rem;
}

.comparison-half-side.posle .side-label {
    left: 2rem;
}

.comparison-separator {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    z-index: 5;
}

@media (max-width: 900px) {
    .full-screen-comparison {
        flex-direction: column;
        height: auto;
    }

    .comparison-half-side {
        height: 40vh;
    }

    .comparison-separator {
        width: 100%;
        height: 2px;
    }
}

/* Ticker Fix */
.flowing-contact-ticker {
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    width: max-content;
    animation: ticker-slide 40s linear infinite;
    padding: 1.5rem 0;
}

@keyframes ticker-slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
    }

    /* Loop adjustment for 3x content */
}

@media (max-width: 600px) {
    .project-simple-gallery {
        grid-template-columns: 1fr;
    }

    .highlighted-gallery-item {
        aspect-ratio: 16/9;
    }

    .lightbox-nav {
        font-size: 2rem;
        padding: 10px;
    }
}

/* Process Showcase Section Update */
.process-showcase-section {
    padding: 10rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Full Width Projects Ticker */
.projects-ticker-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.projects-ticker-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: projects-ticker-slide 60s linear infinite;
}

.projects-ticker-track:hover {
    animation-play-state: paused;
}

.slider-slide {
    flex: 0 0 400px;
    /* Square size */
    aspect-ratio: 1/1;
    /* 1:1 ratio */
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.slider-slide:hover img {
    transform: scale(1.1);
}

.slide-tag {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    border-radius: 4px;
}

.slide-tag.success {
    color: #0066CC;
}

@keyframes projects-ticker-slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Halfway because we duplicated content */
    }
}

.mobile-show-more-wrap {
    display: none;
}

@media (max-width: 768px) {
    .slider-slide {
        flex: 0 0 280px;
    }

    /* Hide extra items initially */
    .initial-hidden {
        display: none !important;
    }

    .initial-hidden.mobile-visible {
        display: block !important;
    }

    .mobile-show-more-wrap {
        display: flex;
        justify-content: center;
        margin-top: 4rem;
        width: 100%;
    }

    .show-more-btn {
        position: relative;
        background: rgba(0, 102, 204, 0.08);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(0, 102, 204, 0.3);
        color: #fff;
        padding: 1.4rem 4rem;
        font-size: 0.7rem;
        font-weight: 900;
        letter-spacing: 0.35em;
        cursor: pointer;
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        border-radius: 2px;
        text-transform: uppercase;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0, 102, 204, 0.15);
    }

    .show-more-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg,
                transparent,
                rgba(255, 255, 255, 0.2),
                transparent);
        transition: left 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .show-more-btn::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg,
                rgba(0, 102, 204, 0.1) 0%,
                transparent 50%,
                rgba(0, 102, 204, 0.1) 100%);
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .show-more-btn:hover {
        background: rgba(0, 102, 204, 0.2);
        border-color: #0066CC;
        letter-spacing: 0.4em;
        box-shadow:
            0 8px 32px rgba(0, 102, 204, 0.3),
            0 0 80px rgba(0, 102, 204, 0.2),
            inset 0 0 20px rgba(0, 102, 204, 0.1);
        transform: translateY(-2px);
    }

    .show-more-btn:hover::before {
        left: 100%;
    }

    .show-more-btn:hover::after {
        opacity: 1;
    }

    .show-more-btn:active {
        transform: translateY(0) scale(0.98);
        box-shadow:
            0 4px 16px rgba(0, 102, 204, 0.2),
            inset 0 0 20px rgba(0, 102, 204, 0.2);
    }

    /* Methodology 16:9 Images */
    .method-image-wrap {
        width: 100% !important;
        aspect-ratio: 16/9 !important;
        height: auto !important;
        margin: 1.5rem 0 !important;
    }

    .method-image-wrap img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* Title Shrink */
    .method-title {
        font-size: 1.8rem !important;
        letter-spacing: 0.1rem !important;
        line-height: 1.2;
    }

    .strip-title {
        font-size: 0.8rem !important;
        letter-spacing: 0.1rem !important;
    }

    /* Comparison Adjustment */
    .full-screen-comparison {
        height: 50vh !important;
    }

    .side-label {
        font-size: 0.65rem !important;
        padding: 0.4rem 0.8rem !important;
        letter-spacing: 0.1rem !important;
    }

    /* Gap Reductions */
    .section-header {
        margin-top: 2rem !important;
        margin-bottom: 3rem !important;
    }

    .sales-process-rebuilt {
        padding-bottom: 2rem !important;
    }

    .other-projects-ticker-section {
        padding-top: 2rem !important;
    }

    .gallery-wrapper {
        margin-top: 5rem !important;
    }

    .sun-tracker-showcase {
        padding-bottom: 5rem !important;
    }
}