/* Digital Marketing Specific Styles */
.dm-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--light) 0%, var(--light-gray) 50%, #f0f9ff 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.dm-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.dm-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gray);
    animation: fadeInUp 1s ease;
}

.dm-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.dm-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.dm-hero-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
    animation: fadeInUp 1s ease 0.4s both;
}

.dm-hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.dm-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(0, 106, 78, 0.1);
    flex: 1;
    transition: all 0.3s ease;
}

.dm-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 106, 78, 0.1);
}

.dm-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.dm-stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

.dm-hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.8s both;
}

.dm-hero-visual {
    position: relative;
    height: 500px;
    animation: fadeInUp 1s ease 1s both;
}

.dm-floating-icons {
    position: relative;
    width: 100%;
    height: 100%;
}

.dm-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 106, 78, 0.3);
    animation: float 6s ease-in-out infinite;
}

.dm-icon-1 {
    top: 10%;
    left: 10%;
    background: linear-gradient(135deg, #1877f2 0%, #42bbf2 100%);
    animation-delay: 0s;
}

.dm-icon-2 {
    top: 20%;
    right: 15%;
    background: linear-gradient(135deg, #ea4335 0%, #fbbc05 100%);
    animation-delay: 1s;
}

.dm-icon-3 {
    top: 45%;
    left: 5%;
    background: linear-gradient(135deg, #e4405f 0%, #fd5949 100%);
    animation-delay: 2s;
}

.dm-icon-4 {
    top: 60%;
    right: 10%;
    background: var(--gradient);
    animation-delay: 3s;
}

.dm-icon-5 {
    bottom: 20%;
    left: 20%;
    background: linear-gradient(135deg, #ff0000 0%, #ff4444 100%);
    animation-delay: 4s;
}

.dm-icon-6 {
    bottom: 10%;
    right: 25%;
    background: var(--gradient-accent);
    animation-delay: 5s;
}

.dm-central-graphic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
}

.dm-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--primary);
    animation: pulse 3s ease-in-out infinite;
}

.dm-circle-1 {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 106, 78, 0.1);
}

.dm-circle-2 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: var(--secondary);
    animation-delay: 1s;
}

.dm-circle-3 {
    width: 160px;
    height: 160px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: var(--accent);
    animation-delay: 2s;
}

.dm-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.dm-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.dm-wave path {
    fill: var(--light-gray);
}

/* Services Section */
.dm-services {
    padding: 5rem 0;
    background: var(--light-gray);
}

.dm-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.dm-service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dm-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.dm-service-card:hover::before {
    transform: scaleX(1);
}

.dm-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.dm-service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.dm-service-icon i {
    font-size: 2rem;
    color: white;
}

.dm-service-card:hover .dm-service-icon {
    transform: scale(1.1) rotate(5deg);
}

.dm-service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.dm-service-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.dm-service-card ul {
    list-style: none;
    padding: 0;
}

.dm-service-card ul li {
    padding: 0.5rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
}

.dm-service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Why Choose Section */
.dm-why-choose {
    padding: 5rem 0;
    background: white;
}

.dm-why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.dm-features {
    margin-top: 2rem;
}

.dm-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.dm-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 106, 78, 0.1);
}

.dm-feature i {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.dm-feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.dm-feature p {
    color: var(--gray);
    line-height: 1.6;
}

.dm-chart-container {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.dm-chart {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 300px;
    gap: 1rem;
}

.dm-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 80px;
}

.dm-bar-fill {
    width: 60px;
    background: var(--gradient);
    border-radius: 10px 10px 0 0;
    transition: height 2s ease;
    position: relative;
    margin-bottom: 1rem;
}

.dm-bar-value {
    position: absolute;
    top: -30px;
    font-weight: bold;
    color: var(--primary);
    font-size: 1.1rem;
}

.dm-bar-label {
    font-size: 0.9rem;
    text-align: center;
    color: var(--gray);
    font-weight: 500;
}

/* CTA Section */
.dm-cta {
    padding: 5rem 0;
    background: var(--gradient);
    color: white;
    text-align: center;
}

.dm-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.dm-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.dm-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.dm-cta .btn-primary {
    background: white;
    color: var(--primary);
}

.dm-cta .btn-primary:hover {
    background: var(--light-gray);
}

.dm-cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.dm-cta .btn-secondary:hover {
    background: white;
    color: var(--primary);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.7;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .dm-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .dm-hero-title {
        font-size: 2.5rem;
    }

    .dm-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .dm-hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .dm-why-content {
        grid-template-columns: 1fr;
    }

    .dm-chart {
        height: 250px;
    }

    .dm-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .dm-hero-title {
        font-size: 2rem;
    }

    .dm-service-card,
    .dm-chart-container {
        padding: 1.5rem;
    }

    .dm-cta-content h2 {
        font-size: 2rem;
    }
}