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

    /* =================================================================
       MARKETING STRATEGY PAGE STYLES - Scoped to #custom-container-marketing-strategy
       ================================================================= */

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

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

    /* Hero Section */
    #custom-container-marketing-strategy .service-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;
    }

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

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

    #custom-container-marketing-strategy .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/3b8effd36780bf45887283789a7c57fc35ef8b7f195f60e7c98dd534c574ac46.webp');
        background-size: cover;
        background-position: center;
        background-attachment: scroll; /* Changed from fixed - iOS doesn't support fixed backgrounds */
    }

    /* Parallax only on desktop - iOS doesn't support background-attachment: fixed */
    @media (min-width: 1025px) {
        #custom-container-marketing-strategy .hero-bg {
            background-attachment: fixed;
        }
    }

    #custom-container-marketing-strategy .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-marketing-strategy .hero-content {
        position: relative;
        z-index: 1;
        text-align: center;
    }

    #custom-container-marketing-strategy .service-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-marketing-strategy .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-marketing-strategy .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-marketing-strategy .hero-cta {
        display: inline-block;
        padding: 1rem 2.5rem;
        background: var(--brand-accent);
        color: var(--brand-dark) !important;
        font-weight: var(--font-weight-semibold);
        text-decoration: none !important;
        border-radius: 0.5rem;
        transition: all 0.3s;
    }

    #custom-container-marketing-strategy .hero-cta:hover,
    #custom-container-marketing-strategy .hero-cta:focus,
    #custom-container-marketing-strategy .hero-cta:active,
    #custom-container-marketing-strategy .hero-cta:visited {
        background: var(--brand-accent);
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(255, 210, 31, 0.3);
        text-decoration: none !important;
        color: var(--brand-dark) !important;
    }

    /* Overview Section */
    #custom-container-marketing-strategy .overview-section {
        padding: 5rem 0;
        background: white;
    }

    #custom-container-marketing-strategy .overview-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: center;
    }

    @media (min-width: 768px) {
        #custom-container-marketing-strategy .overview-content {
            grid-template-columns: 1fr 1fr;
        }
    }

    #custom-container-marketing-strategy .overview-text h2 {
        font-size: var(--text-4xl);
        font-weight: var(--font-weight-bold);
        color: var(--brand-dark);
        margin-bottom: 1.5rem;
    }

    #custom-container-marketing-strategy .overview-text p {
        font-size: var(--text-lg);
        color: var(--brand-neutral);
        line-height: 1.8;
        margin-bottom: 2rem;
    }

    #custom-container-marketing-strategy .overview-image-container {
        position: relative;
        overflow: hidden;
        border-radius: 1rem;
    }

    #custom-container-marketing-strategy .overview-image-container::before {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
        border-radius: 1.2rem;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    #custom-container-marketing-strategy .overview-image-container:hover::before {
        opacity: 1;
    }

    #custom-container-marketing-strategy .overview-image {
        width: 100%;
        height: auto;
        border-radius: 1rem;
        box-shadow: 0 20px 40px rgba(44, 10, 113, 0.15);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    #custom-container-marketing-strategy .overview-image:hover {
        transform: scale(1.03);
        box-shadow: 0 30px 60px rgba(44, 10, 113, 0.25);
    }

    /* Features Grid */
    #custom-container-marketing-strategy .features-section {
        padding: 5rem 0;
        background: var(--brand-light);
    }

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

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

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

    #custom-container-marketing-strategy .feature-card {
        background: white;
        padding: 2rem;
        border-radius: 1rem;
        text-align: center;
        transition: all 0.3s;
        border: 2px solid transparent;
    }

    #custom-container-marketing-strategy .feature-card:hover {
        transform: translateY(-5px);
        border-color: var(--brand-accent);
        box-shadow: 0 15px 30px rgba(44, 10, 113, 0.15);
    }

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

    #custom-container-marketing-strategy .feature-card:hover .feature-icon {
        background: var(--brand-primary);
        color: white;
    }

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

    #custom-container-marketing-strategy .feature-description {
        color: var(--brand-neutral);
        line-height: 1.6;
    }

    /* Benefits Section */
    #custom-container-marketing-strategy .benefits-section {
        padding: 5rem 0;
        background: white;
    }

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

    #custom-container-marketing-strategy .benefit-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    #custom-container-marketing-strategy .benefit-icon {
        width: 40px;
        height: 40px;
        background: var(--brand-accent);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--brand-dark);
        flex-shrink: 0;
    }

    #custom-container-marketing-strategy .benefit-text {
        flex: 1;
    }

    #custom-container-marketing-strategy .benefit-title {
        font-size: var(--text-lg);
        font-weight: var(--font-weight-semibold);
        color: var(--brand-dark);
        margin-bottom: 0.5rem;
    }

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

    #custom-container-marketing-strategy .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-marketing-strategy .cta-content-wrapper {
        position: relative;
        z-index: 2;
    }

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

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

    #custom-container-marketing-strategy .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    #custom-container-marketing-strategy .cta-btn {
        padding: 1rem 2rem;
        font-weight: var(--font-weight-semibold);
        text-decoration: none;
        border-radius: 0.5rem;
        transition: all 0.3s;
    }

    #custom-container-marketing-strategy .cta-btn-primary {
        background: var(--brand-accent);
        color: var(--brand-dark);
    }

    #custom-container-marketing-strategy .cta-btn-primary:hover {
        background: var(--brand-accent);
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(255, 210, 31, 0.3);
    }

    #custom-container-marketing-strategy .cta-btn-secondary {
        background: transparent;
        color: white;
        border: 2px solid white;
    }

    #custom-container-marketing-strategy .cta-btn-secondary:hover {
        background: white;
        color: var(--brand-primary);
    }

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

        #custom-container-marketing-strategy .features-grid {
            grid-template-columns: 1fr;
        }
    }
