/* PAGE CONFIGURATION - Technology Page */
    :root {
        --header-height: 80px;
        --header-height-mobile: 60px;
        --hero-padding-top: 180px;
        --hero-min-height: 55vh;
        --page-padding-top: 80px;
    }

    /* =================================================================
       TECHNOLOGY PAGE STYLES - Scoped to #custom-container-technology
       ================================================================= */

    #custom-container-technology {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* Container */
    #custom-container-technology .cms-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    /* Hero Section */
    #custom-container-technology .technology-hero {
        background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
        padding: 80px 0 80px 0;
        position: relative;
        overflow: hidden;
        margin-top: -80px;
        padding-top: 200px;
        text-align: center;
    }

    @media (max-width: 1024px) {
        #custom-container-technology .hero-bg {
            background-attachment: scroll !important;
            background-size: cover !important;
            background-position: center center !important;
        }
    }

    @media (max-width: 768px) {
        #custom-container-technology .technology-hero {
            margin-top: -60px;
            padding-top: 160px;
        }
    }

    #custom-container-technology .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.6;
        background-image: url('https://cdn.fstr.site/sails-up/sha256/e5862cb966908377a3dd29111d474b5d5ca60831f0b4abc8764f64c7f4010553.webp');
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
    }

    @media (min-width: 1025px) {
        #custom-container-technology .hero-bg {
            background-attachment: fixed;
        }
    }

    #custom-container-technology .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(71, 94, 145, 0.5), rgba(42, 58, 90, 0.6));
    }

    #custom-container-technology .hero-content {
        position: relative;
        z-index: 1;
        width: 100%;
    }

    #custom-container-technology .tech-icon-hero {
        width: 80px;
        height: 80px;
        background: var(--brand-accent);
        border-radius: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--brand-dark);
        font-size: var(--text-3xl);
        margin: 0 auto 2rem;
    }

    #custom-container-technology .hero-title {
        font-size: var(--text-5xl);
        font-weight: var(--font-weight-bold);
        color: white;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    #custom-container-technology .hero-subtitle {
        font-size: var(--text-xl);
        color: rgba(255, 255, 255, 0.9);
        max-width: 700px;
        margin: 0 auto 2.5rem;
        line-height: 1.7;
    }

    #custom-container-technology .hero-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 2rem;
        max-width: 600px;
        margin: 0 auto;
    }

    #custom-container-technology .stat-item {
        text-align: center;
    }

    #custom-container-technology .stat-number {
        font-size: var(--text-4xl);
        font-weight: var(--font-weight-bold);
        color: var(--brand-accent);
        display: block;
    }

    #custom-container-technology .stat-label {
        font-size: var(--text-sm);
        color: rgba(255, 255, 255, 0.8);
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    /* Services Grid Section */
    #custom-container-technology .services-grid-section {
        padding: 5rem 0;
        background: white;
    }

    #custom-container-technology .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    #custom-container-technology .section-title {
        font-size: var(--text-4xl);
        font-weight: var(--font-weight-bold);
        color: var(--brand-dark);
        margin-bottom: 1rem;
    }

    #custom-container-technology .section-subtitle {
        font-size: var(--text-lg);
        color: var(--brand-neutral);
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.7;
    }

    #custom-container-technology .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    @media (min-width: 1024px) {
        #custom-container-technology .services-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    #custom-container-technology .service-card {
        background: white;
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        transition: all 0.3s;
        border: 2px solid transparent;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    #custom-container-technology .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(44, 10, 113, 0.15);
        border-color: var(--brand-accent);
    }

    #custom-container-technology .service-card-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.5s;
    }

    #custom-container-technology .service-card:hover .service-card-image {
        transform: scale(1.05);
    }

    #custom-container-technology .service-card-content {
        padding: 2rem;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    #custom-container-technology .service-icon {
        width: 60px;
        height: 60px;
        background: var(--brand-light);
        border-radius: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--brand-primary);
        font-size: var(--text-2xl);
        margin-bottom: 1.5rem;
        border: 2px solid var(--brand-primary);
    }

    #custom-container-technology .service-card:hover .service-icon {
        background: var(--brand-primary);
        color: white;
        border-color: var(--brand-primary);
    }

    #custom-container-technology .service-title {
        font-size: var(--text-2xl);
        font-weight: var(--font-weight-bold);
        color: var(--brand-dark);
        margin-bottom: 1rem;
    }

    #custom-container-technology .service-description {
        color: var(--brand-neutral);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    #custom-container-technology .service-features {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        flex-grow: 1;
    }

    #custom-container-technology .service-features li {
        padding: 0.125rem 0;
        padding-left: 1.5rem;
        position: relative;
        color: var(--brand-neutral);
        line-height: 1.4;
        font-size: var(--text-sm);
    }

    #custom-container-technology .service-features li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--brand-accent);
        font-weight: var(--font-weight-bold);
    }

    #custom-container-technology .service-link {
        color: var(--brand-primary);
        font-weight: var(--font-weight-semibold);
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: gap 0.3s;
        text-decoration: none !important;
        margin-top: auto;
    }

    #custom-container-technology .service-link:hover {
        gap: 0.75rem;
        text-decoration: none !important;
        color: var(--brand-accent);
    }

    /* Clickable Service Card */
    #custom-container-technology .service-card-link {
        display: block;
        color: inherit;
        text-decoration: none !important;
    }

    /* Removed pointer-events: none to allow Visual Editor selection */

    /* Process Section */
    #custom-container-technology .process-section {
        padding: 5rem 0;
        background: var(--brand-light);
    }

    #custom-container-technology .process-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    #custom-container-technology .process-step {
        text-align: center;
        padding: 2rem;
    }

    #custom-container-technology .process-number {
        width: 70px;
        height: 70px;
        background: var(--brand-accent);
        color: var(--brand-dark);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: var(--text-2xl);
        font-weight: var(--font-weight-bold);
        margin: 0 auto 1.5rem;
        position: relative;
    }

    #custom-container-technology .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 35px;
        right: -50%;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, var(--brand-accent) 0%, transparent 100%);
    }

    @media (max-width: 768px) {
        #custom-container-technology .process-step::after {
            display: none;
        }
    }

    #custom-container-technology .process-title {
        font-size: var(--text-xl);
        font-weight: var(--font-weight-semibold);
        color: var(--brand-dark);
        margin-bottom: 0.75rem;
    }

    #custom-container-technology .process-description {
        color: var(--brand-neutral);
        line-height: 1.6;
    }

    /* Why Choose Section */
    #custom-container-technology .why-choose-section {
        padding: 5rem 0;
        background: white;
    }

    #custom-container-technology .why-choose-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: center;
    }

    @media (min-width: 768px) {
        #custom-container-technology .why-choose-content {
            grid-template-columns: 1fr 1fr;
        }
    }

    #custom-container-technology .why-choose-image {
        width: 100%;
        height: auto;
        border-radius: 1rem;
        box-shadow: 0 20px 40px rgba(44, 10, 113, 0.1);
    }

    #custom-container-technology .why-choose-text h2 {
        font-size: var(--text-3xl);
        font-weight: var(--font-weight-bold);
        color: var(--brand-dark);
        margin-bottom: 1.5rem;
    }

    #custom-container-technology .why-choose-text p {
        color: var(--brand-neutral);
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    #custom-container-technology .why-choose-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    #custom-container-technology .why-choose-list li {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 0.25rem;
        line-height: 1.5;
    }

    #custom-container-technology .why-icon {
        width: 40px;
        height: 40px;
        background: var(--brand-light);
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--brand-primary);
        flex-shrink: 0;
    }

    #custom-container-technology .why-text {
        flex: 1;
    }

    #custom-container-technology .why-text h4 {
        font-size: var(--text-lg);
        font-weight: var(--font-weight-semibold);
        color: var(--brand-dark);
        margin-bottom: 0.25rem;
    }

    #custom-container-technology .why-text p {
        font-size: var(--text-sm);
        color: var(--brand-neutral);
        margin: 0;
    }

    /* CTA Section */
    #custom-container-technology .cta-section {
        padding: 5rem 0;
        background: var(--gradient-primary);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    #custom-container-technology .cta-pattern {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.1;
        background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.3'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    }


    #custom-container-technology .cta-content {
        position: relative;
        z-index: 1;
    }

    #custom-container-technology .cta-title {
        font-size: var(--text-4xl);
        font-weight: var(--font-weight-bold);
        color: white;
        margin-bottom: 1rem;
    }

    #custom-container-technology .cta-description {
        font-size: var(--text-lg);
        color: rgba(255, 255, 255, 0.9);
        max-width: 600px;
        margin: 0 auto 2rem;
    }

    #custom-container-technology .cta-button {
        padding: 1rem 2.5rem;
        background: var(--brand-accent);
        color: var(--brand-dark);
        font-weight: var(--font-weight-semibold);
        text-decoration: none;
        border-radius: 0.5rem;
        display: inline-block;
        transition: all 0.3s;
    }

    #custom-container-technology .cta-button:hover {
        background: var(--brand-accent);
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(255, 210, 31, 0.3);
        text-decoration: none !important;
        opacity: 0.9;
    }

    /* Responsive */
    @media (max-width: 768px) {
        #custom-container-technology .hero-title {
            font-size: var(--text-4xl);
        }

        #custom-container-technology .services-grid {
            grid-template-columns: 1fr;
        }
    }
