/* ========================================
   PICMKR DIGITAL HUB - Services Page Styles
   ======================================== */

/* ===== Services Hero Section ===== */
/* ===== Services Hero Section ===== */
/* ===== Services Hero Section ===== */
.services-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background: transparent !important;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 60px;
    text-align: center;
}

/* Reusing global hero video wrapper styles, but overriding for specific needs if any */
.services-hero .hero-video-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    background: var(--bg-dark);
}

.services-hero .hero-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.services-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 900px;
}

.services-hero-content.centered {
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
    text-wrap: balance;
    line-height: 1.2;
}

.services-hero .subtitle {
    font-size: 1.2rem;
    color: var(--white);
    margin: 0 auto 30px;
    max-width: 700px;
    animation: fadeInUp 0.8s ease 0.4s both;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.keywords-tags.centered-tags {
    justify-content: center;
    margin-top: 25px;
}

.keywords-tags span {
    display: inline-block;
    /* Prevents text breaking mid-tag */
    background: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    color: var(--bg-dark);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 5px;
    /* Adds space if they wrap */
}

/* Mobile Overrides for Video Visibility */
@media (max-width: 992px) {

    .services-hero .hero-video-wrapper,
    .services-hero .hero-video {
        position: fixed;
        /* Keep fixed for parallax-like feel */
        width: 100%;
        height: 100vh;
        object-fit: contain;
        /* Decrease scale / show full video */
        z-index: 0;
        background: var(--bg-dark);
        /* Letterboxing background */
    }
}

/* ===== Services List Section ===== */
.services-list-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

/* Detailed Cards Grid */
.service-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-detailed-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-detailed-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

/* Internal Layout for Height matching */
.service-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-detailed-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--white);
}

.service-desc {
    color: var(--body-text);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.5;
}

.service-img-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.service-details {
    margin-bottom: 30px;
    flex-grow: 1;
    /* Pushes CTA to bottom */
}

.service-details strong {
    display: block;
    margin-bottom: 15px;
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-details ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--body-text);
    font-size: 0.95rem;
}

.service-details ul li::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary);
    font-size: 0.8rem;
}

.service-result {
    background: rgba(123, 47, 247, 0.1);
    padding: 15px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--secondary);
    font-size: 0.9rem;
    color: var(--white);
    line-height: 1.5;
}

.service-detailed-card .btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

/* Bonus Services */
.bonus-services {
    margin-top: 80px;
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-dark-2);
    border-radius: var(--radius-xl);
}

.bonus-services h3 {
    margin-bottom: 10px;
    color: var(--white);
    font-size: 1.8rem;
}

.bonus-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.bonus-tag {
    background: var(--bg-card);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    font-weight: 500;
    color: var(--secondary);
    border: 1px solid transparent;
    transition: var(--transition-normal);
}

.bonus-tag:hover {
    border-color: var(--secondary);
    transform: translateY(-2px);
}

/* ===== Collaborate Form Section ===== */
.collaborate-section {
    padding: 100px 0;
    background: var(--bg-dark);
    color: var(--white);
}

.collaborate-box {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 60px;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
    color: var(--white);
}

.collaborate-box .section-header {
    margin-bottom: 40px;
    text-align: center;
}

.collab-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

/* ===== Industries ===== */
.industries-section {
    background: var(--bg-dark-2);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.industries-section h2 {
    color: var(--white);
    margin-bottom: 40px;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.industry-tag {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    padding: 15px 30px;
    border-radius: var(--radius-xl);
    font-weight: 500;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-normal);
}

.industry-tag:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

/* ===== Technologies Section ===== */
.technologies-section {
    padding: 80px 0;
    background: var(--bg-dark-2);
    text-align: center;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.tech-card {
    background: var(--bg-card);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 140px;
    border: 1px solid transparent;
    transition: var(--transition-normal);
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.tech-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.tech-card span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--body-text);
}

/* ===== Service Page Location ===== */
.service-location {
    padding: 80px 0;
    background: var(--bg-dark);
}

.location-box {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.location-box h2 {
    margin-bottom: 30px;
}

.location-details p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--body-text);
}

.areas-served {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
    color: var(--primary);
    font-weight: 600;
}

/* ===== CTA Section ===== */
.services-cta {
    padding: 100px 0;
    text-align: center;
}

.services-cta h2 {
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 1.2rem;
    color: var(--body-text);
    margin-bottom: 40px;
}

.cta-buttons-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* ===== Why Work With Us & Benefits ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-items: center;
}

.benefit-card {
    background: var(--bg-card);
    padding: 30px 25px;
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.8rem;
}

.benefit-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

/* ===== Work Process Flow ===== */
.work-process {
    padding: 80px 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
    gap: 20px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
    display: block;
}

.step-card {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-card .step-number {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    box-shadow: 0 0 0 8px var(--bg-dark);
}

/* Hide old arrow pseudo-element if it exists */
.step-card:not(:last-child) .step-number::after {
    display: none;
}

.step-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--body-text);
    line-height: 1.5;
    max-width: 200px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .process-steps {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .process-steps::before {
        left: 24px;
        top: 0;
        bottom: 0;
        width: 2px;
        height: auto;
    }

    .step-card {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        width: 100%;
        gap: 20px;
    }

    .step-card .step-number {
        margin: 0;
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        box-shadow: 0 0 0 5px var(--bg-dark);
    }

    .step-card p {
        margin: 0;
        max-width: 100%;
    }
}

/* End of services.css */