/* Marketing Page Styles */

.marketing-page {
    padding-top: 0;
}

/* ==================== HERO SECTION ==================== */
.marketing-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 160px 0 100px;
    background: #0f172a;
    overflow: hidden;
}

.marketing-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.marketing-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.marketing-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.95));
}

.marketing-hero .container {
    position: relative;
    z-index: 2;
}

.marketing-hero h1 {
    font-family: 'VL Allround Gothic', sans-serif;
    font-size: 64px;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
}

.marketing-hero h1 .highlight {
    color: #34a853;
}

.marketing-hero .hero-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 40px;
}

/* ==================== SERVICES SECTION ==================== */
.marketing-services {
    padding: 100px 0;
    background: white;
}

.marketing-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.marketing-service-card {
    display: flex;
    flex-direction: column;
    background: #f8fafc;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.marketing-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: #34a853;
}

.m-service-image {
    height: 250px;
    overflow: hidden;
}

.m-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.marketing-service-card:hover .m-service-image img {
    transform: scale(1.05);
}

.m-service-content {
    padding: 40px;
}

.m-service-content h3 {
    font-size: 24px;
    color: #0f172a;
    margin-bottom: 16px;
    font-weight: 700;
}

.m-service-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.m-service-list {
    list-style: none;
    padding: 0;
}

.m-service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #334155;
    font-weight: 500;
}

.m-service-list li svg {
    width: 20px;
    height: 20px;
    color: #34a853;
}

/* ==================== STRATEGY SECTION ==================== */
.marketing-strategy {
    padding: 100px 0;
    background: #f1f5f9;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.strategy-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.strategy-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #34a853;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.strategy-item h4 {
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 16px;
    font-weight: 700;
}

.strategy-item p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .marketing-hero h1 {
        font-size: 48px;
    }

    .marketing-services-grid {
        grid-template-columns: 1fr;
    }

    .strategy-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .marketing-hero h1 {
        font-size: 36px;
    }

    .strategy-grid {
        grid-template-columns: 1fr;
    }

    .m-service-content {
        padding: 30px;
    }
}