/* assets/css/pages/dijital-pazarlama-ajansi.css */

:root {
    --dm-primary: #1e3a8a;
    /* Deep Blue */
    --dm-secondary: #0f172a;
    /* Dark Slate */
    --dm-accent: #3b82f6;
    /* Bright Blue */
    --dm-glow: #8b5cf6;
    /* Purple Glow */
    --dm-bg: #f8fafc;
    --dm-text: #475569;
}

/* HERO SECTION - Tech/Marketing Vibe */
.dm-hero {
    background: url('/assets/img/bg/inner-hero-bg.webp') no-repeat center center/cover;
    position: relative;
    padding: 140px 0 100px;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.dm-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Modern Tech Gradient */
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 58, 138, 0.9) 100%);
    z-index: 1;
}

.dm-hero-content {
    position: relative;
    z-index: 2;
}

.dm-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.2;
    background: linear-gradient(to right, #ffffff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dm-hero p {
    font-size: 1.25rem;
    max-width: 750px;
    margin: 0 auto 40px;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
    color: #cbd5e1;
}

.dm-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #60a5fa;
    backdrop-filter: blur(10px);
}

.dm-badge i {
    margin-right: 8px;
    color: #60a5fa;
}

/* SERVICES GRID */
.dm-grid-sec {
    padding: 100px 0;
    background-color: var(--dm-bg);
}

.dm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dm-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
}

.dm-card::before {
    content: '';
    /* Top Glow Bar */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--card-color, var(--dm-accent));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.dm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.dm-card:hover::before {
    opacity: 1;
}

.dm-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
    background: var(--card-bg, #eff6ff);
    color: var(--card-color, var(--dm-accent));
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.dm-card:hover .dm-icon-box {
    background: var(--card-color, var(--dm-accent));
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.dm-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dm-secondary);
    margin-bottom: 12px;
}

.dm-card p {
    font-size: 1rem;
    color: var(--dm-text);
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.dm-link-btn {
    font-weight: 600;
    color: var(--card-color, var(--dm-accent));
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: gap 0.3s ease;
    font-size: 0.95rem;
}

.dm-link-btn:hover {
    gap: 12px;
    color: var(--dm-secondary);
}

/* CONTENT & RESPONSIVE */
.dm-check-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--dm-secondary);
}

.dm-check-list li i {
    color: #10b981;
    margin-right: 12px;
}

@media (max-width: 992px) {
    .dm-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .dm-grid {
        grid-template-columns: 1fr;
    }

    .dm-hero h1 {
        font-size: 2rem;
    }
}