/* Hizmetlerimiz Ana Sayfası için CSS */
    .dgn-services-hero {
        background: linear-gradient(135deg, #0a2b3e 0%, #0d3b4f 100%);
        padding: 80px 0;
        text-align: center;
        color: white;
    }
    .dgn-services-hero-content h2 {
        font-size: 42px;
        margin-bottom: 20px;
    }
    .dgn-services-hero-content p {
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto;
        opacity: 0.9;
    }
    .dgn-services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
        padding: 60px 0;
    }
    .dgn-service-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
    }
    .dgn-service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }
    .dgn-service-card-image {
        position: relative;
        height: 220px;
        overflow: hidden;
        background: #f1f5f9;
    }
    .dgn-service-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .dgn-service-card:hover .dgn-service-card-image img {
        transform: scale(1.05);
    }
    .dgn-service-card-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,180,216,0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .dgn-service-card:hover .dgn-service-card-overlay {
        opacity: 1;
    }
    .dgn-service-card-overlay i {
        font-size: 48px;
        color: white;
    }
    /* Placeholder stili - görseli olmayanlar için */
    .dgn-image-placeholder {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
        z-index: 2;
    }
    .dgn-image-placeholder i {
        font-size: 48px;
        color: #94a3b8;
        margin-bottom: 10px;
    }
    .dgn-image-placeholder span {
        font-size: 14px;
        color: #64748b;
        font-weight: 500;
    }
    .dgn-service-card:hover .dgn-image-placeholder {
        background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    }
    .dgn-service-card:hover .dgn-image-placeholder i {
        color: #00b4d8;
    }
    .dgn-service-card-content {
        padding: 25px;
    }
    .dgn-service-card-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
        color: #1e293b;
    }
    .dgn-service-card-content p {
        font-size: 14px;
        color: #64748b;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    .dgn-service-card-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #00b4d8;
        font-weight: 600;
        font-size: 14px;
        transition: gap 0.3s ease;
    }
    .dgn-service-card-btn i {
        font-size: 12px;
    }
    .dgn-service-card-btn:hover {
        gap: 12px;
    }
    .dgn-why-us-section {
        background: #f8fafc;
        padding: 80px 0;
    }
    .dgn-section-title {
        font-size: 32px;
        margin-bottom: 50px;
        font-weight: 700;
    }
    .dgn-why-us-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 30px;
        text-align: center;
    }
    .dgn-why-us-item i {
        font-size: 48px;
        color: #00b4d8;
        margin-bottom: 20px;
    }
    .dgn-why-us-item h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    .dgn-why-us-item p {
        color: #64748b;
        font-size: 14px;
    }
    .dgn-cta-section {
        background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
        padding: 60px 0;
        text-align: center;
        color: white;
    }
    .dgn-cta-content h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .dgn-cta-content p {
        font-size: 16px;
        margin-bottom: 30px;
        opacity: 0.9;
    }
    .dgn-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: white;
        color: #0077b6;
        padding: 14px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        transition: all 0.3s ease;
    }
    .dgn-cta-btn:hover {
        gap: 15px;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
    @media (max-width: 768px) {
        .dgn-services-grid {
            grid-template-columns: 1fr;
        }
        .dgn-why-us-grid {
            grid-template-columns: 1fr;
        }
        .dgn-services-hero-content h2 {
            font-size: 28px;
        }
        .dgn-cta-content h2 {
            font-size: 24px;
        }
    }
    /* ==================================================== */
/* DİĞER KATEGORİLER İÇİN ŞIK VE RESPONSIVE TASARIM */
/* ==================================================== */

/* Banner - sadece resim, yazı yok */
.dgn-main-banner {
    width: 100%;
    min-height: 400px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

@media (max-width: 768px) {
    .dgn-main-banner {
        min-height: 250px;
    }
}

@media (max-width: 576px) {
    .dgn-main-banner {
        min-height: 200px;
    }
}

/* Features Bölümü (Garantili Hizmet, Uzman Kadro vs.) */
.dgn-features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.dgn-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.dgn-feature-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 180, 216, 0.1);
}

.dgn-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -10px rgba(0, 180, 216, 0.2);
    border-color: rgba(0, 180, 216, 0.3);
}

.dgn-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.dgn-feature-icon i {
    font-size: 36px;
    color: white;
}

.dgn-feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}

.dgn-feature-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* İçerik Bölümleri (Resim + Metin) */
.dgn-content-sections {
    padding: 80px 0;
}

.dgn-content-card {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 70px;
}

.dgn-content-card.reverse {
    flex-direction: row-reverse;
}

.dgn-content-card .dgn-content-image {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.dgn-content-card .dgn-content-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.dgn-content-card:hover .dgn-content-image img {
    transform: scale(1.02);
}

.dgn-content-card .dgn-content-text {
    flex: 1;
}

.dgn-content-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.dgn-content-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    border-radius: 3px;
}

.dgn-content-card.reverse .dgn-content-title:after {
    left: 0;
    right: auto;
}

.dgn-content-description {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

.dgn-content-description p {
    margin-bottom: 15px;
}

/* Text Only Card */
.dgn-content-card.dgn-text-only {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 50px;
    border-radius: 24px;
    margin-bottom: 70px;
    text-align: center;
}

.dgn-content-card.dgn-text-only .dgn-content-title:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Responsive */
@media (max-width: 1024px) {
    .dgn-content-card {
        gap: 30px;
    }
    .dgn-content-title {
        font-size: 28px;
    }
    .dgn-features-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .dgn-content-card,
    .dgn-content-card.reverse {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 50px;
    }
    .dgn-content-title {
        font-size: 24px;
        text-align: center;
    }
    .dgn-content-title:after {
        left: 50% !important;
        transform: translateX(-50%);
    }
    .dgn-content-description {
        text-align: center;
        font-size: 15px;
    }
    .dgn-content-card.dgn-text-only {
        padding: 30px 20px;
    }
    .dgn-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .dgn-feature-card {
        padding: 25px 20px;
    }
    .dgn-content-sections {
        padding: 50px 0;
    }
}

@media (max-width: 576px) {
    .dgn-content-title {
        font-size: 22px;
    }
    .dgn-content-description {
        font-size: 14px;
    }
}

/* PAS Kategorisi için mevcut CSS'lerin aynen kalması için ek (dokunma) */
.dgn-special-design .dgn-content-with-image {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}
.dgn-special-design .dgn-reverse-layout {
    flex-direction: row-reverse;
}
.dgn-special-design .dgn-image-wrapper {
    flex: 1;
}
.dgn-special-design .dgn-image-wrapper img {
    width: 100%;
    border-radius: 16px;
}
.dgn-special-design .dgn-text-wrapper {
    flex: 1;
}
@media (max-width: 768px) {
    .dgn-special-design .dgn-content-with-image,
    .dgn-special-design .dgn-reverse-layout {
        flex-direction: column;
    }
}
/* ==================================================== */
/* 📱 MOBİLDE DGN MAIN BANNER - TAM GÖRÜNÜM */
/* ==================================================== */

/* Masaüstü varsayılan */
.dgn-main-banner {
    width: 100%;
    min-height: 400px;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* Mobil (max 768px) - resim tam görünsün, kesilmesin */
@media (max-width: 768px) {
    .dgn-main-banner {
        min-height: 280px !important;
        background-size: contain !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-color: #f5f7fa !important;
    }
}

/* Küçük mobil (max 576px) */
@media (max-width: 576px) {
    .dgn-main-banner {
        min-height: 220px !important;
        background-size: contain !important;
    }
}

/* Çok küçük mobil (max 480px) */
@media (max-width: 480px) {
    .dgn-main-banner {
        min-height: 180px !important;
        background-size: contain !important;
    }
}

/* Geniş mobil (481px - 768px arası) */
@media (min-width: 481px) and (max-width: 768px) {
    .dgn-main-banner {
        min-height: 250px !important;
        background-size: contain !important;
    }
}
/* ==================================================== */
/* 📱 DGN MAIN BANNER - TAM RESPONSIVE (Her kategori için) */
/* ==================================================== */

/* Banner container */
.dgn-main-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Resim wrapper */
.dgn-main-banner .dgn-main-banner-image {
    width: 100%;
    display: block;
}

/* Resim kendisi - responsive */
.dgn-main-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Banner içindeki yazılar (varsa) */
.dgn-banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 30px;
    border-radius: 16px;
}

/* Fallback banner (resim yoksa) */
.dgn-main-banner.dgn-fallback-banner {
    background: linear-gradient(135deg, #0a2b3e 0%, #0d3b4f 100%);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========== MASAÜSTÜ (1200px+) ========== */
@media (min-width: 1200px) {
    .dgn-main-banner-img {
        max-height: 500px;
        min-height: 400px;
    }
}

/* ========== TABLET (768px - 1199px) ========== */
@media (max-width: 1199px) and (min-width: 768px) {
    .dgn-main-banner-img {
        max-height: 400px;
        min-height: 300px;
    }
    .dgn-banner-content h1 {
        font-size: 32px;
    }
    .dgn-banner-content p {
        font-size: 16px;
    }
}

/* ========== MOBİL (max 768px) ========== */
@media (max-width: 768px) {
    .dgn-main-banner-img {
        max-height: 300px;
        min-height: 220px;
    }
    .dgn-banner-content {
        width: 90%;
        padding: 15px 20px;
    }
    .dgn-banner-content h1 {
        font-size: 24px;
    }
    .dgn-banner-content p {
        font-size: 13px;
    }
}

/* ========== KÜÇÜK MOBİL (max 576px) ========== */
@media (max-width: 576px) {
    .dgn-main-banner-img {
        max-height: 220px;
        min-height: 180px;
    }
    .dgn-banner-content {
        width: 95%;
        padding: 10px 15px;
    }
    .dgn-banner-content h1 {
        font-size: 18px;
    }
    .dgn-banner-content p {
        font-size: 11px;
    }
}

/* ========== ÇOK KÜÇÜK MOBİL (max 480px) ========== */
@media (max-width: 480px) {
    .dgn-main-banner-img {
        max-height: 180px;
        min-height: 200px;
    }
    .dgn-banner-content {
        width: 98%;
        padding: 8px 12px;
    }
    .dgn-banner-content h1 {
        font-size: 16px;
    }
    .dgn-banner-content p {
        font-size: 10px;
    }
}
/* ==================================================== */
/* 🔧 RESİM SECTION'I TAM DOLDURSUN */
/* ==================================================== */

/* Banner section - resme göre yükseklik alsın */
.dgn-main-banner {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
    width: 100% !important;
    display: block !important;
}

/* Resim wrapper */
.dgn-main-banner-image {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
    width: 100% !important;
    display: block !important;
}

/* Resim - section'ı tam kaplasın */
.dgn-main-banner-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: cover !important;
}

/* Section'ın varsayılan padding'ini kaldır */
.dgn-category-page-content .dgn-main-banner {
    margin-bottom: 0 !important;
}

/* Eğer section'ın min-height'i varsa kaldır */
.dgn-main-banner {
    min-height: auto !important;
}
/* ============================================ */
/* ✨ KATEGORİ BAŞLIĞI - ÇOK ŞIK */
/* ============================================ */

.categories-font {
    font-family: 'Playfair Display', 'Georgia', 'Inter', serif !important;
    font-weight: 700 !important;
    font-size: 1.6rem !important;
    letter-spacing: 0.5px !important;
    line-height: 1.4 !important;
    color: #0a2b3e !important;
    margin-bottom: 12px !important;
    position: relative !important;
    display: inline-block !important;
    font-style: italic !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

/* Masaüstü (1200px üstü) */
@media (min-width: 1200px) {
    .categories-font {
        font-size: 2.2rem !important;
        letter-spacing: 0.8px !important;
        font-weight: 700 !important;
    }
}

/* Tablet (769px - 1199px) */
@media (max-width: 1199px) and (min-width: 769px) {
    .categories-font {
        font-size: 1.9rem !important;
        letter-spacing: 0.6px !important;
    }
}

/* Mobil (768px altı) */
@media (max-width: 768px) {
    .categories-font {
        font-size: 1.5rem !important;
        letter-spacing: 0.3px !important;
        display: block !important;
        text-align: center !important;
        font-style: italic !important;
    }
}

/* Küçük mobil (576px altı) */
@media (max-width: 576px) {
    .categories-font {
        font-size: 1.3rem !important;
        letter-spacing: 0.2px !important;
    }
}

/* Çok küçük mobil (400px altı) */
@media (max-width: 400px) {
    .categories-font {
        font-size: 1.1rem !important;
        letter-spacing: 0.1px !important;
    }
}

/* ============================================ */
/* ✨ ŞIK ALT ÇİZGİ - İNCE VE ZARİF */
/* ============================================ */

.categories-font::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 55px;
    height: 2px;
    background: linear-gradient(90deg, #00b4d8, #0077b6, #00b4d8);
    background-size: 200% 100%;
    border-radius: 2px;
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Mobilde alt çizgi ortada */
@media (max-width: 768px) {
    .categories-font::after {
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
        height: 2px;
    }
}

/* ============================================ */
/* ✨ ALTERNATİF - GRADIENT RENK (DAHA ŞIK) */
/* ============================================ */
/*
.categories-font {
    font-family: 'Playfair Display', 'Georgia', serif !important;
    font-weight: 700 !important;
    font-size: 1.8rem !important;
    letter-spacing: 0.5px !important;
    background: linear-gradient(135deg, #0a2b3e 0%, #00b4d8 50%, #0077b6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    display: inline-block !important;
    font-style: italic !important;
    text-shadow: none !important;
}
*/

/* ============================================ */
/* ✨ ALTERNATİF 2 - İNCE VE ZARİF */
/* ============================================ */
/*
.categories-font {
    font-family: 'Cormorant Garamond', 'Georgia', serif !important;
    font-weight: 500 !important;
    font-size: 1.8rem !important;
    letter-spacing: 1px !important;
    color: #0a2b3e !important;
    font-style: italic !important;
    text-transform: uppercase !important;
}

@media (min-width: 1200px) {
    .categories-font {
        font-size: 2.4rem !important;
        letter-spacing: 1.5px !important;
    }
}
*/

