/* 
    MailTaşıma Custom Premium Styles 
    Antigravity Superpowers UI/UX Enhancement
*/

:root {
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Gradient Text Effect */
.text-primary-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Glassmorphism Cards */
.icon-bx-wraper.style-7, .pricingtable-wrapper, .dlab-blog.style-2 {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border) !important;
    border-radius: 20px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
}

.icon-bx-wraper.style-7:hover, .pricingtable-wrapper:hover, .dlab-blog.style-2:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15) !important;
    border-color: rgba(99, 102, 241, 0.3) !important;
}

/* Premium Buttons */
.btn-primary.gradient {
    background: var(--primary-gradient) !important;
    border: none !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary.gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.btn-primary.gradient:hover::before {
    opacity: 1;
}

/* CTA Pulse Animation */
@keyframes pulse-btn {
    0% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(99, 102, 241, 0); }
    100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}

.banner-content .btn-primary {
    animation: pulse-btn 2s infinite;
}

/* Modern Typography */
.section-head .title {
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

/* Image Hover Scale */
.dz-media img, .icon-media img {
    transition: transform 0.6s ease !important;
}

.dz-media:hover img, .icon-bx-wraper:hover .icon-media img {
    transform: scale(1.1);
}

/* FAQ Accordion Styling */
.dlab-accordion.style-1 .card {
    border: none;
    background: var(--glass-bg);
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.dlab-accordion.style-1 .card-header {
    background: transparent;
    border: none;
    padding: 0;
}

.dlab-accordion.style-1 .card-header a {
    font-weight: 700;
    padding: 20px 25px;
    background: transparent;
    color: #333;
    display: block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.dlab-accordion.style-1 .card-header a:not(.collapsed) {
    background: var(--primary-gradient);
    color: #fff;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.2);
}

.dlab-accordion.style-1 .card-body {
    background: #fff;
    color: #666;
    padding: 20px 25px;
    border-radius: 0 0 12px 12px;
    line-height: 1.7;
}

/* Services (Nasıl Çalışıyoruz) Style 3 Enhancements */
.icon-bx-wraper.style-3 {
    border-radius: 15px;
    transition: all 0.4s ease;
    padding: 20px;
    background: transparent;
    border: 1px solid transparent;
}

.icon-bx-wraper.style-3:hover {
    background: var(--glass-bg);
    border-color: var(--glass-border);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
    transform: translateX(10px);
}

.icon-bx-wraper.style-3:hover .icon-bx-sm {
    background: var(--primary-gradient) !important;
    color: #fff !important;
    transform: scale(1.1);
}

/* Team/Supported Environments Enhancements */
.dlab-team.style-1 {
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dlab-team.style-1:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.dlab-team.style-1 .dlab-media img {
    transition: transform 0.6s ease;
}

.dlab-team.style-1:hover .dlab-media img {
    transform: scale(1.1) rotate(2deg);
}

/* Counters Content Box Enhancements */
.dlab-content-bx.style-3 {
    background: var(--primary-gradient);
    border-radius: 20px;
    padding: 50px 30px;
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
    color: #fff !important;
}

.dlab-content-bx.style-3 h2 {
    color: #fff !important;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    line-height: 1.4;
}

.dlab-content-bx.style-3::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    animation: rotate-bg 15s linear infinite;
}

@keyframes rotate-bg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhancing Pricing Tables specific components */
.pricingtable-wrapper.style-2 .pricingtable-title h3 {
    font-weight: 800;
}

.pricingtable-wrapper.style-2 .pricingtable-price h2 {
    color: #6366f1;
}

.pricingtable-wrapper.style-2:hover .pricingtable-price h2 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Footer Enhancements */
.site-footer.style-2 {
    border-top: 1px solid var(--glass-border);
    position: relative;
    background-color: #1a1a2e !important; /* Temiz koyu arka plan */
}

.site-footer.style-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 20, 0.8), rgba(10, 10, 20, 0.95));
    z-index: 0;
}

.site-footer.style-2 .container,
.site-footer.style-2 .footer-top,
.site-footer.style-2 .footer-bottom {
    position: relative;
    z-index: 1; /* Metinlerin karanlık katmanın üstünde kalması için */
}

.dlab-subscribe.style-1 {
    background: var(--primary-gradient);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.2);
    transform: translateY(-50px);
    margin-bottom: -50px;
}

.dlab-subscribe.style-1 .title {
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
}

.widget_services ul li a {
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.widget_services ul li a:hover {
    color: #6366f1;
    padding-left: 10px;
    font-weight: 600;
}

.dlab-social-icon ul li a {
    background: #f4f5f9;
    color: #333;
    transition: all 0.4s ease;
    border-radius: 50%;
}

.dlab-social-icon ul li a:hover {
    background: var(--primary-gradient);
    color: #fff;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}
