/* Modern Ürün Kartları Stilleri */

/* Modern ürün kartı ana container */
.modern-product-card {
    border-radius: 20px !important;
    border: 2px solid var(--temarenk) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    overflow: hidden;
    background: #ffffff;
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
}

.modern-product-card:hover {
    border-color: var(--temarenk) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-5px);
}

/* Ürün resmi container */
.modern-product-card .product-image {
    border-radius: 18px 18px 0 0;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.modern-product-card .product-image img {
    border-radius: 18px 18px 0 0;
    transition: transform 0.4s ease;
    transform: scale(1.05);
}

.modern-product-card:hover .product-image img {
    transform: scale(1.08);
}

/* Ürün detayları container */
.modern-product-card .product-detail {
    padding: 20px 20px 15px 20px !important;
    border-radius: 0 0 18px 18px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Modern Detaylar Butonu */
.modern-details-btn {
    margin: 15px 0 10px 0;
    text-align: center;
}

.btn-details {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--temarenk) 0%, rgba(var(--temargba), 0.8) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--temargba), 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-details:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-details:hover:before {
    left: 100%;
}

.btn-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--temargba), 0.4);
    color: #ffffff;
    text-decoration: none;
}

.btn-details span {
    margin-right: 8px;
    font-weight: 600;
}

.btn-details i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-details:hover i {
    transform: translateX(3px);
}

/* Ürün başlığı */
.modern-product-card .product-detail h6 {
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    line-height: 1.4 !important;
    color: #333333;
}

.modern-product-card .product-detail h6 a {
    color: #333333;
    transition: color 0.3s ease;
}

.modern-product-card .product-detail h6 a:hover {
    color: var(--temarenk);
}

/* Kategori adı */
.modern-product-card .product-detail p {
    color: #666666;
    font-size: 13px;
    margin-bottom: 12px;
    font-weight: 400;
}

/* Fiyat alanı */
.modern-product-card .shop-price {
    margin-top: 10px;
    text-align: center;
}

.modern-product-card .shop-price strong {
    font-size: 18px !important;
    color: var(--temarenk) !important;
    font-weight: 700;
}

.modern-product-card .shop-price del {
    color: #999999;
    font-size: 14px;
    margin-right: 8px;
}

/* Yıldız rating */
.modern-product-card .iq-rating {
    margin-bottom: 10px;
    text-align: center;
}

.modern-product-card .iq-rating li a {
    color: #ffb700 !important;
    font-size: 14px;
}

/* Ürün ikonları (hover efektleri) */
.modern-product-card .product-icon {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.modern-product-card:hover .product-icon {
    opacity: 1;
    transform: translateY(0);
}

.modern-product-card .product-icon li a {
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
}

.modern-product-card .product-icon li a:hover {
    background: var(--temarenk) !important;
    color: #ffffff !important;
    transform: scale(1.1);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .modern-product-card {
        border-radius: 15px !important;
    }

    .modern-product-card .product-image {
        border-radius: 13px 13px 0 0;
    }

    .modern-product-card .product-image img {
        border-radius: 13px 13px 0 0;
    }

    .modern-product-card .product-detail {
        padding: 15px 15px 10px 15px !important;
        border-radius: 0 0 13px 13px;
    }

    .btn-details {
        padding: 8px 16px;
        font-size: 13px;
    }

    .modern-product-card .product-detail h6 {
        font-size: 14px !important;
    }

    .modern-product-card .shop-price strong {
        font-size: 16px !important;
    }
}

/* Animasyon efektleri */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-product-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover durumunda ek efektler */
.modern-product-card:hover .product-detail {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Ek hover efektleri ve iyileştirmeler */
.modern-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--temargba), 0.02) 0%, rgba(var(--temargba), 0.05) 100%);
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    pointer-events: none;
}

.modern-product-card:hover::before {
    opacity: 1;
}

/* Buton için ek animasyon */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(var(--temargba), 0.3);
    }

    50% {
        box-shadow: 0 4px 20px rgba(var(--temargba), 0.5);
    }

    100% {
        box-shadow: 0 4px 15px rgba(var(--temargba), 0.3);
    }
}

.btn-details {
    animation: pulse 2s infinite;
}

.btn-details:hover {
    animation: none;
}

/* Ürün resmi için ek efektler */
.modern-product-card .product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--temargba), 0.1) 0%, transparent 100%);
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 18px 18px 0 0;
}

.modern-product-card:hover .product-image::after {
    opacity: 1;
}

/* Fiyat için özel efekt */
.modern-product-card .shop-price strong {
    position: relative;
    display: inline-block;
}

.modern-product-card .shop-price strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--temarenk);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.modern-product-card:hover .shop-price strong::after {
    width: 100%;
}

/* Yıldızlar için animasyon */
.modern-product-card .iq-rating li a {
    transition: all 0.3s ease;
}

.modern-product-card:hover .iq-rating li a {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(255, 183, 0, 0.5);
}

/* Kartın genel hover durumunda tüm elementlerin senkronize animasyonu */
.modern-product-card:hover .product-detail>* {
    animation: slideUp 0.3s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0.8;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobil için optimize edilmiş animasyonlar */
@media (max-width: 768px) {
    .modern-product-card {
        animation: none;
        margin-top: 8px;
        margin-bottom: 8px;
    }

    .modern-product-card:hover {
        transform: translateY(-3px);
    }

    .btn-details {
        animation: none;
    }

    .modern-product-card:hover .product-image img {
        transform: scale(1.02);
    }
}

/* WhatsApp Butonu Stilleri */
.whatsapp-button {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 25px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    margin: 5px !important;
}

.whatsapp-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.whatsapp-button:hover:before {
    left: 100%;
}

.whatsapp-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.whatsapp-button i {
    font-size: 16px !important;
    margin-right: 8px !important;
    transition: transform 0.3s ease !important;
}

.whatsapp-button:hover i {
    transform: scale(1.1) !important;
}

/* WhatsApp butonu için pulse animasyonu */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }

    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
}

.whatsapp-button {
    animation: whatsappPulse 2s infinite;
}

.whatsapp-button:hover {
    animation: none;
}

/* Mobil için WhatsApp butonu optimizasyonu */
@media (max-width: 768px) {
    .whatsapp-button {
        padding: 10px 20px !important;
        font-size: 13px !important;
        animation: none;
    }

    .whatsapp-button i {
        font-size: 14px !important;
    }
}

/* Sipariş Butonu Stilleri */
.order-button {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 25px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    margin: 5px !important;
}

.order-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.order-button:hover:before {
    left: 100%;
}

.order-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Modern Paylaşım Butonları */
.modern-share-buttons {
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
}

.share-title {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
    text-align: center;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.share-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.share-btn:hover:before {
    left: 100%;
}

.share-btn:hover {
    transform: translateY(-3px);
    color: #ffffff;
    text-decoration: none;
}

/* WhatsApp Paylaşım */
.whatsapp-share {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-share:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Facebook Paylaşım */
.facebook-share {
    background: linear-gradient(135deg, #1877F2 0%, #0d6efd 100%);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.facebook-share:hover {
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

/* Twitter Paylaşım */
.twitter-share {
    background: linear-gradient(135deg, #1DA1F2 0%, #0d6efd 100%);
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}

.twitter-share:hover {
    box-shadow: 0 6px 20px rgba(29, 161, 242, 0.4);
}

/* Mobil için paylaşım butonları optimizasyonu */
@media (max-width: 768px) {
    .share-buttons {
        gap: 10px;
    }

    .share-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .share-title {
        font-size: 14px;
    }
}

/* Ürün Resminin Altındaki Butonlar Bölümü */
.product-buttons-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.product-buttons-section .whatsapp-button,
.product-buttons-section .order-button {
    margin: 8px !important;
    min-width: 200px;
}

.product-buttons-section .modern-share-buttons {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
}

.product-buttons-section .share-title {
    font-size: 14px;
    margin-bottom: 12px;
}

.product-buttons-section .share-buttons {
    gap: 12px;
}

.product-buttons-section .share-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
}

/* Mobil için ürün butonları optimizasyonu */
@media (max-width: 768px) {
    .product-buttons-section {
        padding: 20px 15px;
        margin-top: 15px;
    }

    .product-buttons-section .whatsapp-button,
    .product-buttons-section .order-button {
        min-width: 100%;
        margin: 5px 0 !important;
        padding: 10px 15px !important;
        font-size: 13px !important;
    }

    .product-buttons-section .share-buttons {
        gap: 8px;
    }

    .product-buttons-section .share-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Slider WhatsApp Butonu Stilleri */
.slider-whatsapp-button {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 14px 35px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4) !important;
    position: relative !important;
    overflow: hidden !important;
    min-width: 160px !important;
}

.slider-whatsapp-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.slider-whatsapp-button:hover:before {
    left: 100%;
}

.slider-whatsapp-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Slider butonu için pulse animasyonu */
@keyframes sliderWhatsappPulse {
    0% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    }

    100% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    }
}

.slider-whatsapp-button {
    animation: sliderWhatsappPulse 3s infinite;
}

.slider-whatsapp-button:hover {
    animation: none;
}

/* Modern Blog Kartları Stilleri */
.modern-blog-card {
    border-radius: 20px !important;
    border: 2px solid var(--temarenk) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    overflow: hidden;
    background: #ffffff;
    position: relative;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    padding: 8px;
}

.modern-blog-card:hover {
    border-color: var(--temarenk) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-8px);
}

/* Blog resmi container */
.modern-blog-card .iq-entry-image {
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    position: relative;
    height: 250px;
}

.modern-blog-card .iq-entry-image img {
    border-radius: 15px 15px 0 0;
    transition: transform 0.5s ease;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modern-blog-card:hover .iq-entry-image img {
    transform: scale(1.1);
}

/* Resim üstüne hover efekti */
.modern-blog-card .iq-entry-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-blog-card:hover .iq-entry-image:after {
    opacity: 1;
}

/* Blog detay bölümü */
.modern-blog-card .iq-blog-detail {
    padding: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 0 0 15px 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    border: none !important;
}

.modern-blog-card .iq-entry-title h5 {
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
    line-height: 1.4 !important;
    color: #333333;
    transition: color 0.3s ease;
}

.modern-blog-card .iq-entry-title h5:hover {
    color: var(--temarenk);
}

.modern-blog-card .iq-entry-content {
    color: #666666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.modern-blog-card .iq-entry-meta {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.modern-blog-card .iq-entry-meta li {
    font-size: 13px;
    color: #999999;
}

.modern-blog-card .iq-entry-meta li i {
    color: var(--temarenk);
    margin-right: 5px;
}

/* Tarih badge */
.modern-blog-card .date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--temarenk) !important;
    color: #ffffff !important;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(var(--temargba), 0.3);
}

.modern-blog-card .date small {
    display: block;
    font-size: 11px;
    margin-top: 2px;
    opacity: 0.9;
}

/* Mobil için blog kartları optimizasyonu */
@media (max-width: 768px) {
    .modern-blog-card {
        border-radius: 15px !important;
        margin-bottom: 20px;
    }

    .modern-blog-card .iq-entry-image {
        border-radius: 13px 13px 0 0;
        height: 200px;
    }

    .modern-blog-card .iq-entry-image img {
        border-radius: 13px 13px 0 0;
    }

    .modern-blog-card .iq-blog-detail {
        padding: 15px;
        border-radius: 0 0 13px 13px;
    }

    .modern-blog-card .iq-entry-title h5 {
        font-size: 16px !important;
    }

    .modern-blog-card .iq-entry-content {
        font-size: 13px;
    }

    .modern-blog-card:hover {
        transform: translateY(-5px);
    }

    .modern-blog-card:hover .iq-entry-image img {
        transform: scale(1.05);
    }
}

/* Mobil için slider butonu optimizasyonu */
@media (max-width: 768px) {
    .slider-whatsapp-button {
        padding: 12px 30px !important;
        font-size: 14px !important;
        min-width: 140px !important;
        animation: none;
    }
}

@media (max-width: 480px) {
    .slider-whatsapp-button {
        padding: 10px 25px !important;
        font-size: 13px !important;
        min-width: 130px !important;
    }
}

/* Modern Proje Kartları Stilleri */
.modern-project-card {
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    overflow: visible;
    background: #ffffff;
    position: relative;
    margin-bottom: 25px;
    margin-left: 5px;
    margin-right: 5px;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* İnce çizgi efekti - Border */
.modern-project-card:before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid var(--temarenk);
    border-radius: 20px;
    pointer-events: none;
    z-index: 2;
    opacity: 1;
    transition: all 0.3s ease;
}

.modern-project-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-8px);
}

.modern-project-card:hover:before {
    opacity: 1;
}

/* Proje resmi container - Ürün kartları gibi doğal boyut */
.modern-project-card .iq-portfolio-img {
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    /* Height ve padding-bottom kaldırıldı - doğal boyut */
}

.modern-project-card .iq-portfolio-img img {
    transition: transform 0.5s ease;
    display: block;
    width: 100%;
    height: auto; /* Doğal yükseklik - ürün kartları gibi */
    /* position absolute kaldırıldı */
}

.modern-project-card:hover .iq-portfolio-img img {
    transform: scale(1.1);
}

/* Resim üstüne hover efekti */
.modern-project-card .iq-portfolio-img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-project-card:hover .iq-portfolio-img:after {
    opacity: 1;
}

/* Modern İletişim Kartları Stilleri - Ultra İnce Tasarım */
.modern-contact-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 10px 8px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
    text-align: center;
    position: relative;
    overflow: visible;
    border: 1px solid #f8f8f8;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* İnce çizgi efekti - Border */
.modern-contact-card:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 1px solid var(--temarenk);
    border-radius: 10px;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease;
}

.modern-contact-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.modern-contact-card:hover:before {
    opacity: 1;
}

.modern-contact-card .iq-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.modern-contact-card .feature-icon {
    width: 28px;
    height: 28px;
    margin: 0 auto 5px;
    background: linear-gradient(135deg, var(--temarenk) 0%, rgba(var(--temargba), 0.8) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 6px rgba(var(--temargba), 0.15);
    flex-shrink: 0;
}

.modern-contact-card:hover .feature-icon {
    transform: rotate(360deg) scale(1.05);
    box-shadow: 0 2px 10px rgba(var(--temargba), 0.25);
}

.modern-contact-card .feature-icon i {
    font-size: 13px !important;
    color: #ffffff;
}

.modern-contact-card h4 {
    font-size: 10px !important;
    font-weight: 600 !important;
    margin-bottom: 3px !important;
    margin-top: 0 !important;
    color: #333333;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.modern-contact-card:hover h4 {
    color: var(--temarenk);
}

.modern-contact-card p,
.modern-contact-card span {
    font-size: 10px;
    font-weight: 400 !important;
    color: #666666;
    line-height: 1.3;
    margin: 0;
}

.modern-contact-card .iq-lead {
    display: block;
    margin-top: 1px;
}

/* Google Maps Modern Bölümü */
.modern-map-section {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
    margin-bottom: 30px;
    border: 2px solid var(--temarenk);
}

.modern-map-section .map-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.modern-map-section .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0);
    transition: filter 0.3s ease;
}

.modern-map-section:hover .map-container iframe {
    filter: grayscale(0);
}

/* İletişim Bilgileri Modern Tasarım - Tip 2 */
.modern-contact-info {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.modern-contact-info .iq-contact-box {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.modern-contact-info .iq-contact-box:last-of-type {
    border-bottom: none;
}

.modern-contact-info .iq-contact-box:hover {
    padding-left: 10px;
}

.modern-contact-info .iq-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--temarenk) 0%, rgba(var(--temargba), 0.8) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.modern-contact-info .iq-contact-box:hover .iq-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(var(--temargba), 0.3);
}

.modern-contact-info .iq-icon i {
    font-size: 22px;
    color: #ffffff;
}

.modern-contact-info .contact-box h5 {
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 5px !important;
    color: #333333;
}

.modern-contact-info .contact-box p,
.modern-contact-info .contact-box span {
    font-size: 14px;
    font-weight: 400 !important;
    color: #666666;
    margin: 0;
}

/* İletişim Bilgileri Modern Tasarım - Tip 3 */
.iq-contact3 .modern-contact-box {
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.iq-contact3 .modern-contact-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.iq-contact3 .modern-contact-box .left {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.iq-contact3 .modern-contact-box:hover .left {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(360deg);
}

.iq-contact3 .modern-contact-box .left i {
    font-size: 28px !important;
}

.iq-contact3 .modern-contact-box .right h5 {
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
}

.iq-contact3 .modern-contact-box .right span {
    font-size: 15px !important;
    font-weight: 400 !important;
}

/* Modern İletişim Form Container */
.modern-contact-form-section {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
    margin-bottom: 30px;
    border: 2px solid var(--temarenk);
    padding: 35px;
}

.modern-contact-form-section h4 {
    text-align: center;
    margin-bottom: 25px;
}

/* Mobil için İletişim Optimizasyonu */
@media (max-width: 768px) {
    .modern-contact-card {
        padding: 8px 6px;
        margin-bottom: 15px;
        overflow: hidden;
    }

    .modern-contact-card:before {
        display: none;
    }

    .modern-contact-card:hover {
        border-color: var(--temarenk);
    }

    .modern-contact-card .feature-icon {
        width: 24px;
        height: 24px;
        margin: 0 auto 4px;
    }

    .modern-contact-card .feature-icon i {
        font-size: 11px !important;
    }

    .modern-contact-card h4 {
        font-size: 9px !important;
        margin-bottom: 2px !important;
    }

    .modern-contact-card p,
    .modern-contact-card span {
        font-size: 9px;
        line-height: 1.2;
    }

    .modern-contact-form-section {
        padding: 20px 15px;
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .modern-map-section .map-container {
        height: 300px;
    }
}

/* Sayfa (Corporate Page) Görsel İnce Çizgi Efekti */
.sayfa-image-wrapper {
    position: relative;
    display: inline-block;
    margin: 20px auto;
}

.sayfa-image-wrapper img {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* İnce çizgi efekti */
.sayfa-image-wrapper:before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--temarenk);
    border-radius: 12px;
    pointer-events: none;
    z-index: 1;
    opacity: 1;
    transition: all 0.3s ease;
}

.sayfa-image-wrapper:hover img {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Modern Sosyal Paylaşım Butonları - Sayfa */
.modern-share-section {
    margin-top: 40px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.modern-share-title {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
    text-align: left;
    display: flex;
    align-items: center;
}

.modern-share-title i {
    margin-right: 8px;
    color: var(--temarenk);
}

.modern-share-buttons-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.modern-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.modern-share-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.modern-share-btn:hover:before {
    left: 100%;
}

.modern-share-btn:hover {
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
}

.modern-share-btn i {
    font-size: 16px;
    margin-right: 6px;
}

/* Facebook */
.share-facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0d6efd 100%);
}

.share-facebook:hover {
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

/* Twitter */
.share-twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
}

.share-twitter:hover {
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.4);
}

/* WhatsApp */
.share-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.share-whatsapp:hover {
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* LinkedIn */
.share-linkedin {
    background: linear-gradient(135deg, #0077B5 0%, #005885 100%);
}

.share-linkedin:hover {
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.4);
}

/* Print */
.share-print {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.share-print:hover {
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.4);
}

/* Mobil için optimizasyon */
@media (max-width: 768px) {
    .modern-share-section {
        padding: 20px 15px;
        margin-top: 30px;
    }

    .modern-share-buttons-container {
        gap: 8px;
    }

    .modern-share-btn {
        padding: 8px 14px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }

    .sayfa-image-wrapper:before {
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
    }

    .modern-contact-info {
        padding: 20px;
    }
}

/* Proje Detay - Modern Paylaşım Butonları */
.modern-share-buttons h5 {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
}

.share-buttons-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
}

.btn-share:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-share:hover:before {
    left: 100%;
}

.btn-share:hover {
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
}

.btn-share i {
    font-size: 18px;
    margin-right: 8px;
}

.btn-share span {
    font-weight: 500;
}

/* Facebook Button */
.btn-share-facebook {
    background: #1877F2;
}

.btn-share-facebook:hover {
    background: #0d6efd;
    box-shadow: 0 5px 18px rgba(24, 119, 242, 0.4);
}

/* Twitter/X Button */
.btn-share-twitter {
    background: #000000;
}

.btn-share-twitter:hover {
    background: #1a1a1a;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.5);
}

/* WhatsApp Button */
.btn-share-whatsapp {
    background: #25D366;
}

.btn-share-whatsapp:hover {
    background: #128C7E;
    box-shadow: 0 5px 18px rgba(37, 211, 102, 0.4);
}

/* Mobil için paylaşım butonları */
@media (max-width: 768px) {
    .share-buttons-container {
        gap: 10px;
    }

    .btn-share {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    .modern-share-buttons h5 {
        font-size: 14px;
    }

    .modern-contact-info .iq-icon {
        width: 45px;
        height: 45px;
    }

    .modern-contact-info .iq-icon i {
        font-size: 20px;
    }

    .iq-contact3 .modern-contact-box {
        padding: 20px;
    }

    .iq-contact3 .modern-contact-box .left {
        width: 50px;
        height: 50px;
    }

    .iq-contact3 .modern-contact-box .left i {
        font-size: 24px !important;
    }
}

/* Modern Proje Detay Bölümü - Resmin Altında */
.modern-project-details-btn {
    position: relative;
    padding: 15px 20px;
    text-align: left;
    background: linear-gradient(135deg, rgba(var(--temargba), 0.03) 0%, rgba(var(--temargba), 0.08) 100%);
    border-radius: 0 0 15px 15px;
    border-top: 2px solid rgba(var(--temargba), 0.15);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.03);
}

.btn-project-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: var(--temarenk) !important;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 6px 20px rgba(var(--temargba), 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    width: 100%;
    backdrop-filter: blur(10px);
}

.btn-project-details:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left 0.7s ease;
}

.btn-project-details:hover:before {
    left: 100%;
}

.btn-project-details:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 10px 30px rgba(var(--temargba), 0.6), 0 4px 12px rgba(0, 0, 0, 0.15);
    background: var(--temarenk) !important;
    color: #ffffff !important;
    text-decoration: none;
}

.btn-project-details span {
    flex: 1;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-project-details .arrow-circle {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-project-details .arrow-circle i {
    font-size: 14px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.btn-project-details:hover .arrow-circle {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.btn-project-details:hover .arrow-circle i {
    transform: translateX(4px);
}

/* Buton için pulse animasyonu */
@keyframes projectButtonPulse {
    0% {
        box-shadow: 0 6px 20px rgba(var(--temargba), 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    50% {
        box-shadow: 0 8px 28px rgba(var(--temargba), 0.6), 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    100% {
        box-shadow: 0 6px 20px rgba(var(--temargba), 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
    }
}

.btn-project-details {
    animation: projectButtonPulse 2.5s ease-in-out infinite;
}

.btn-project-details:hover {
    animation: none;
}

/* Mobil için proje kartları optimizasyonu */
@media (max-width: 768px) {
    .modern-project-card {
        border-radius: 12px !important;
        margin-bottom: 15px;
        margin-left: 0;
        margin-right: 0;
    }

    .modern-project-card:before {
        border-radius: 12px;
    }

    .modern-project-card .iq-portfolio-img {
        border-radius: 12px 12px 0 0;
        /* Height ve padding-bottom kaldırıldı */
    }

    .modern-project-details-btn {
        padding: 12px 15px;
        border-radius: 0 0 12px 12px;
    }

    .btn-project-details {
        padding: 10px 12px;
        font-size: 13px;
        width: 100%;
        animation: none;
    }

    .btn-project-details .arrow-circle {
        width: 32px;
        height: 32px;
        margin-left: 8px;
    }

    .btn-project-details .arrow-circle i {
        font-size: 13px;
    }

    .modern-project-card:hover {
        transform: translateY(-5px);
    }

    .modern-project-card:hover .iq-portfolio-img img {
        transform: scale(1.05);
    }
}




/* Modern Counter Kartları Stilleri */
.modern-counter-card {
    border-radius: 20px !important;
    border: 2px solid var(--temarenk) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    overflow: hidden;
    background: #ffffff;
    position: relative;
    margin: 10px 5px;
    padding: 25px 20px !important;
}

.modern-counter-card:hover {
    border-color: var(--temarenk) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-5px);
}

/* Counter ikonları için modern stil */
.modern-counter-card .fa {
    font-size: 24px !important;
    color: var(--temarenk) !important;
    transition: all 0.3s ease;
}

.modern-counter-card:hover .fa {
    transform: scale(1.1);
    color: var(--temarenk) !important;
}

/* Counter sayıları için modern stil */
.modern-counter-card .timer {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: var(--temarenk) !important;
    transition: all 0.3s ease;
}

.modern-counter-card:hover .timer {
    transform: scale(1.05);
}

/* Counter başlıkları için modern stil */
.modern-counter-card .iq-lead,
.modern-counter-card label {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #333333 !important;
    margin-top: 8px !important;
    transition: all 0.3s ease;
}

.modern-counter-card:hover .iq-lead,
.modern-counter-card:hover label {
    color: var(--temarenk) !important;
}

/* Counter kartları için ek efektler */
.modern-counter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--temargba), 0.02) 0%, rgba(var(--temargba), 0.05) 100%);
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    pointer-events: none;
}

.modern-counter-card:hover::before {
    opacity: 1;
}

/* Counter animasyonu */
@keyframes counterPulse {
    0% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    50% {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
}

.modern-counter-card {
    animation: counterPulse 3s infinite;
}

.modern-counter-card:hover {
    animation: none;
}

/* Mobil için counter kartları optimizasyonu */
@media (max-width: 768px) {
    .modern-counter-card {
        border-radius: 15px !important;
        margin: 8px 3px;
        padding: 20px 15px !important;
    }

    .modern-counter-card .fa {
        font-size: 20px !important;
    }

    .modern-counter-card .timer {
        font-size: 28px !important;
    }

    .modern-counter-card .iq-lead,
    .modern-counter-card label {
        font-size: 14px !important;
    }

    .modern-counter-card:hover {
        transform: translateY(-3px);
    }

    .modern-counter-card {
        animation: none;
    }
}

/* Modern Testimonial Kartları Stilleri */
.modern-testimonial-card {
    border-radius: 20px !important;
    border: 2px solid var(--temarenk) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    overflow: hidden;
    background: #ffffff;
    position: relative;
    margin: 10px 5px;
    padding: 25px 20px !important;
}

.modern-testimonial-card:hover {
    border-color: var(--temarenk) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-5px);
}

/* Testimonial yorum metni için modern stil */
.modern-testimonial-card p {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #333333 !important;
    margin-bottom: 20px !important;
    font-style: italic;
    transition: all 0.3s ease;
}

.modern-testimonial-card:hover p {
    color: var(--temarenk) !important;
}

/* Testimonial müşteri adı için modern stil */
.modern-testimonial-card .iq-lead,
.modern-testimonial-card h6 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--temarenk) !important;
    margin-bottom: 5px !important;
    transition: all 0.3s ease;
}

.modern-testimonial-card:hover .iq-lead,
.modern-testimonial-card:hover h6 {
    color: var(--temarenk) !important;
    transform: scale(1.02);
}

/* Testimonial görev için modern stil */
.modern-testimonial-card span {
    font-size: 14px !important;
    color: #666666 !important;
    font-weight: 500 !important;
    transition: all 0.3s ease;
}

.modern-testimonial-card:hover span {
    color: #333333 !important;
}

/* Testimonial resim için modern stil */
.modern-testimonial-card img {
    border-radius: 50% !important;
    border: 3px solid var(--temarenk) !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--temargba), 0.3);
}

.modern-testimonial-card:hover img {
    transform: scale(1.1);
    border-color: var(--temarenk) !important;
    box-shadow: 0 6px 20px rgba(var(--temargba), 0.4);
}

/* Testimonial kartları için ek efektler */
.modern-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--temargba), 0.02) 0%, rgba(var(--temargba), 0.05) 100%);
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    pointer-events: none;
}

.modern-testimonial-card:hover::before {
    opacity: 1;
}

/* Testimonial animasyonu */
@keyframes testimonialPulse {
    0% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    50% {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
}

.modern-testimonial-card {
    animation: testimonialPulse 3s infinite;
}

.modern-testimonial-card:hover {
    animation: none;
}

/* Mobil için testimonial kartları optimizasyonu */
@media (max-width: 768px) {
    .modern-testimonial-card {
        border-radius: 15px !important;
        margin: 8px 3px;
        padding: 20px 15px !important;
    }

    .modern-testimonial-card p {
        font-size: 14px !important;
    }

    .modern-testimonial-card .iq-lead,
    .modern-testimonial-card h6 {
        font-size: 16px !important;
    }

    .modern-testimonial-card span {
        font-size: 13px !important;
    }

    .modern-testimonial-card:hover {
        transform: translateY(-3px);
    }

    .modern-testimonial-card {
        animation: none;
    }
}

/* Modern Blog Kartları Stilleri */
.modern-blog-card {
    border-radius: 20px !important;
    border: 2px solid var(--temarenk) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    overflow: hidden;
    background: #ffffff;
    position: relative;
    margin: 10px 5px;
}

.modern-blog-card:hover {
    border-color: var(--temarenk) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-5px);
}

/* Blog resmi container */
.modern-blog-card .iq-entry-image {
    border-radius: 18px 18px 0 0;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.modern-blog-card .iq-entry-image img {
    border-radius: 18px 18px 0 0;
    transition: transform 0.4s ease;
    transform: scale(1.02);
}

.modern-blog-card:hover .iq-entry-image img {
    transform: scale(1.05);
}

/* Blog tarih badge */
.modern-blog-card .date {
    background: linear-gradient(135deg, var(--temarenk) 0%, rgba(var(--temargba), 0.8) 100%) !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(var(--temargba), 0.3) !important;
    transition: all 0.3s ease;
}

.modern-blog-card:hover .date {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(var(--temargba), 0.4) !important;
}

/* Blog detayları container */
.modern-blog-card .iq-blog-detail {
    padding: 25px 20px 20px 20px !important;
    border-radius: 0 0 18px 18px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Blog başlığı */
.modern-blog-card .iq-entry-title h5 {
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    color: #333333 !important;
    margin-bottom: 15px !important;
    transition: all 0.3s ease;
}

.modern-blog-card .iq-entry-title h5 a {
    color: #333333 !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.modern-blog-card:hover .iq-entry-title h5,
.modern-blog-card:hover .iq-entry-title h5 a {
    color: var(--temarenk) !important;
}

/* Blog açıklaması */
.modern-blog-card .iq-entry-content p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #666666 !important;
    margin-bottom: 20px !important;
    transition: all 0.3s ease;
}

.modern-blog-card:hover .iq-entry-content p {
    color: #333333 !important;
}

/* Blog meta bilgileri */
.modern-blog-card .iq-entry-meta {
    border-top: 1px solid #e9ecef;
    padding-top: 15px !important;
    margin-top: 15px !important;
}

.modern-blog-card .iq-entry-meta li {
    display: inline-block;
    margin-right: 15px;
    font-size: 13px !important;
    color: #666666 !important;
    transition: all 0.3s ease;
}

.modern-blog-card .iq-entry-meta li a {
    color: #666666 !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.modern-blog-card .iq-entry-meta li i {
    margin-right: 5px;
    color: var(--temarenk) !important;
    transition: all 0.3s ease;
}

.modern-blog-card:hover .iq-entry-meta li,
.modern-blog-card:hover .iq-entry-meta li a {
    color: #333333 !important;
}

.modern-blog-card:hover .iq-entry-meta li i {
    transform: scale(1.1);
}

/* Blog kartları için ek efektler */
.modern-blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--temargba), 0.02) 0%, rgba(var(--temargba), 0.05) 100%);
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    pointer-events: none;
}

.modern-blog-card:hover::before {
    opacity: 1;
}

/* Blog animasyonu */
@keyframes blogPulse {
    0% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    50% {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
}

.modern-blog-card {
    animation: blogPulse 3s infinite;
}

.modern-blog-card:hover {
    animation: none;
}

/* Mobil için blog kartları optimizasyonu */
@media (max-width: 768px) {
    .modern-blog-card {
        border-radius: 15px !important;
        margin: 8px 3px;
    }

    .modern-blog-card .iq-entry-image {
        border-radius: 13px 13px 0 0;
    }

    .modern-blog-card .iq-entry-image img {
        border-radius: 13px 13px 0 0;
    }

    .modern-blog-card .iq-blog-detail {
        padding: 20px 15px 15px 15px !important;
        border-radius: 0 0 13px 13px;
    }

    .modern-blog-card .iq-entry-title h5 {
        font-size: 16px !important;
    }

    .modern-blog-card .iq-entry-content p {
        font-size: 13px !important;
    }

    .modern-blog-card .iq-entry-meta li {
        font-size: 12px !important;
        margin-right: 10px;
    }

    .modern-blog-card:hover {
        transform: translateY(-3px);
    }

    .modern-blog-card {
        animation: none;
    }
}

/* Modern Hizmet Kartları Stilleri */
.modern-service-card {
    border-radius: 20px !important;
    border: 2px solid var(--temarenk) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    overflow: hidden;
    background: #ffffff;
    position: relative;
    margin: 10px 5px;
    padding: 25px 20px !important;
}

.modern-service-card:hover {
    border-color: var(--temarenk) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Hizmet resmi container */
.modern-service-card img {
    border-radius: 15px !important;
    transition: transform 0.4s ease;
    transform: scale(1.02);
}

.modern-service-card:hover img {
    transform: scale(1.02);
}

/* Hizmet ikonları için modern stil */
.modern-service-card .fa,
.modern-service-card i {
    font-size: 24px !important;
    color: var(--temarenk) !important;
    transition: all 0.3s ease;
    margin-bottom: 15px !important;
}

.modern-service-card:hover .fa,
.modern-service-card:hover i {
    color: var(--temarenk) !important;
}

/* Hizmet başlığı */
.modern-service-card h6 {
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    color: #333333 !important;
    margin-bottom: 15px !important;
    transition: all 0.3s ease;
}

.modern-service-card h6 a {
    color: #333333 !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.modern-service-card:hover h6,
.modern-service-card:hover h6 a {
    color: var(--temarenk) !important;
}

/* Hizmet açıklaması */
.modern-service-card p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #666666 !important;
    margin-bottom: 20px !important;
    transition: all 0.3s ease;
}

.modern-service-card:hover p {
    color: #666666 !important;
}

/* Devamını oku butonu */
.modern-service-card .read-more {
    margin-top: 15px !important;
}

.modern-service-card .read-more a {
    color: var(--temarenk) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.modern-service-card .read-more a i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.modern-service-card .read-more a:hover {
    color: var(--temarenk) !important;
}

.modern-service-card .read-more a:hover i {
    transform: none;
}

/* Hizmet kartları için ek efektler */
.modern-service-card::before {
    display: none;
}

.modern-service-card:hover::before {
    display: none;
}

/* Hizmet animasyonu */
@keyframes servicePulse {
    0% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    50% {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
}

.modern-service-card {
    animation: none;
}

.modern-service-card:hover {
    animation: none;
}

/* Mobil için hizmet kartları optimizasyonu */
@media (max-width: 768px) {
    .modern-service-card {
        border-radius: 15px !important;
        margin: 8px 3px;
        padding: 20px 15px !important;
    }

    .modern-service-card img {
        border-radius: 12px !important;
    }

    .modern-service-card .fa,
    .modern-service-card i {
        font-size: 20px !important;
    }

    .modern-service-card h6 {
        font-size: 16px !important;
    }

    .modern-service-card p {
        font-size: 13px !important;
    }

    .modern-service-card:hover {
        transform: none;
    }

    .modern-service-card {
        animation: none;
    }
}

/* Modern Bölüm Başlık Butonları Stilleri */
.modern-section-title-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--temarenk) 0%, rgba(var(--temargba), 0.8) 100%);
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 15px 40px !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    text-decoration: none !important;
    text-align: center !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0 8px 25px rgba(var(--temargba), 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    margin: 20px 0 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
}

.modern-section-title-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.modern-section-title-button:hover:before {
    left: 100%;
}

.modern-section-title-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(var(--temargba), 0.4) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Başlık butonu için pulse animasyonu */
@keyframes titleButtonPulse {
    0% {
        box-shadow: 0 8px 25px rgba(var(--temargba), 0.3);
    }

    50% {
        box-shadow: 0 12px 35px rgba(var(--temargba), 0.5);
    }

    100% {
        box-shadow: 0 8px 25px rgba(var(--temargba), 0.3);
    }
}

.modern-section-title-button {
    animation: titleButtonPulse 3s infinite;
}

.modern-section-title-button:hover {
    animation: none;
}

/* Mobil için başlık butonları optimizasyonu */
@media (max-width: 768px) {
    .modern-section-title-button {
        padding: 12px 30px !important;
        font-size: 16px !important;
        margin: 15px 0 !important;
        animation: none;
    }
}

@media (max-width: 480px) {
    .modern-section-title-button {
        padding: 10px 25px !important;
        font-size: 14px !important;
        margin: 10px 0 !important;
    }
}

/* Modern Proje Detay Sayfası Stilleri */
.modern-project-detail-card {
    border-radius: 20px;
    border: 2px solid var(--temarenk);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: #ffffff;
    padding: 8px;
    transition: all 0.4s ease;
}

.modern-project-detail-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.modern-project-detail-card .owl-carousel {
    border-radius: 15px;
    overflow: hidden;
}

.modern-project-detail-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* Proje Açıklaması */
.modern-project-description {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.modern-project-description h4 {
    color: var(--temarenk);
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(var(--temargba), 0.2);
}

.project-description-content {
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
}

/* Modern Paylaşım Butonları */
.modern-share-buttons {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
}

.modern-share-buttons h5 {
    color: #333333;
    font-size: 18px;
    margin-bottom: 20px;
}

.share-buttons-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 180px;
}

.btn-share i {
    font-size: 18px;
    margin-right: 10px;
}

.btn-share span {
    white-space: nowrap;
}

.btn-share:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-share:hover:before {
    left: 100%;
}

/* Facebook Butonu */
.btn-share-facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d5dbf 100%);
    color: #ffffff;
}

.btn-share-facebook:hover {
    background: linear-gradient(135deg, #0d5dbf 0%, #1877f2 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
    color: #ffffff;
    text-decoration: none;
}

/* Twitter/X Butonu */
.btn-share-twitter {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #ffffff;
}

.btn-share-twitter:hover {
    background: linear-gradient(135deg, #333333 0%, #000000 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: #ffffff;
    text-decoration: none;
}

/* WhatsApp Butonu */
.btn-share-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
}

.btn-share-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #ffffff;
    text-decoration: none;
}

/* Mobil Optimizasyon */
@media (max-width: 768px) {
    .modern-project-detail-card {
        padding: 5px;
    }
    
    .modern-project-description {
        padding: 20px;
    }
    
    .modern-share-buttons {
        padding: 20px;
    }
    
    .share-buttons-container {
        flex-direction: column;
    }
    
    .btn-share {
        width: 100%;
        min-width: auto;
    }
}

/* Diğer Projeler Kartları - Proje Detay Sayfası Alt Kısım */
.modern-other-project-card {
    border-radius: 15px;
    border: 2px solid var(--temarenk);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: #ffffff;
    padding: 5px;
    transition: all 0.4s ease;
    margin: 0 10px;
}

.modern-other-project-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.modern-other-project-card .project-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.modern-other-project-card .project-image-wrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 10px;
}

.modern-other-project-card:hover .project-image-wrapper img {
    transform: scale(1.1);
}

.modern-other-project-card .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modern-other-project-card:hover .project-overlay {
    opacity: 1;
}

.modern-other-project-card .project-category {
    display: inline-block;
    background: var(--temarenk);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    align-self: flex-start;
}

.modern-other-project-card .project-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.modern-other-project-card .project-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.modern-other-project-card .project-title a:hover {
    color: var(--temarenk);
}

.modern-other-project-card .project-actions a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: var(--temarenk);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.modern-other-project-card .project-actions a:hover {
    background: var(--temarenk);
    color: #ffffff;
    transform: translateX(5px);
}

.modern-other-project-card .project-actions a i {
    transition: transform 0.3s ease;
}

.modern-other-project-card .project-actions a:hover i {
    transform: translateX(3px);
}

/* Mobil Optimizasyon - Diğer Projeler */
@media (max-width: 768px) {
    .modern-other-project-card {
        margin: 0 5px;
        padding: 3px;
    }
    
    .modern-other-project-card .project-image-wrapper img {
        height: 200px;
    }
    
    .modern-other-project-card .project-overlay {
        padding: 15px;
    }
    
    .modern-other-project-card .project-title {
        font-size: 16px;
    }
}

/* Modern Hizmet Kartları Stilleri */
.modern-service-card {
    border-radius: 15px !important;
    border: 2px solid var(--temarenk) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s ease !important;
    overflow: hidden !important;
    background: #ffffff !important;
    padding: 8px !important;
    position: relative;
}

.modern-service-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-5px);
    border-color: var(--temarenk) !important;
}

/* Hizmet kartlarındaki görseller */
.modern-service-card img {
    border-radius: 10px !important;
    transition: transform 0.5s ease;
}

.modern-service-card:hover img {
    transform: scale(1.05);
}

/* Hizmet kartlarındaki içerik alanları */
.modern-service-card .iq-blog,
.modern-service-card .special-box,
.modern-service-card .iq-feature5,
.modern-service-card .iq-line,
.modern-service-card .feature15-image,
.modern-service-card .icon-bg {
    border-radius: 10px;
}

/* Mobil Optimizasyon - Hizmet Kartları */
@media (max-width: 768px) {
    .modern-service-card {
        padding: 5px !important;
        margin-bottom: 20px;
    }
}

/* Hizmet Detay Sayfası - Görsel Çizgi Efekti */
.modern-service-detail-image {
    border-radius: 20px;
    border: 2px solid var(--temarenk);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: #ffffff;
    padding: 8px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.modern-service-detail-image:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.modern-service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.modern-service-detail-image:hover img {
    transform: scale(1.02);
}

/* Mobil Optimizasyon - Hizmet Detay Görseli */
@media (max-width: 768px) {
    .modern-service-detail-image {
        padding: 5px;
        margin-bottom: 20px;
    }
}

/* Blog Detay Sayfası - Görsel Çizgi Efekti */
.modern-blog-detail-image {
    border-radius: 20px;
    border: 2px solid var(--temarenk);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: visible;
    background: #ffffff;
    padding: 8px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    position: relative;
}

.modern-blog-detail-image:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.modern-blog-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.modern-blog-detail-image:hover img {
    transform: scale(1.02);
}

/* Blog detay sayfasındaki tarih badge */
.modern-blog-detail-image .date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--temarenk) !important;
    color: #ffffff !important;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(var(--temargba), 0.4);
}

.modern-blog-detail-image .date small {
    display: block;
    font-size: 12px;
    margin-top: 3px;
    opacity: 0.95;
}

/* Mobil Optimizasyon - Blog Detay Görseli */
@media (max-width: 768px) {
    .modern-blog-detail-image {
        padding: 5px;
        margin-bottom: 20px;
    }
    
    .modern-blog-detail-image .date {
        top: 15px;
        left: 15px;
        padding: 8px 12px;
        font-size: 14px;
    }
}