/* Home Index Page Styles */
:root {
    --prm: #007bff;
    --prm-dark: #0056b3;
    --dark: #0f172a;
    --gray-bg: #f8fafc;
    --border: #e2e8f0;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Bölüm Boşlukları (Profesyonel Spacing) */
.section-py {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Hero Section */
.hero-custom {
    min-height: 90vh;
    background: var(--dark);
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
}

/* Video Container - Modern Glassmorphism Effect */
.video-container {
    position: relative;
    padding: 4px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(
        135deg,
        rgba(52, 161, 154, 0.8),
        rgba(7, 25, 82, 0.8),
        rgba(52, 161, 154, 0.6),
        rgba(13, 202, 240, 0.7)
    );
    background-size: 300% 300%;
    animation: gradientBorder 8s ease infinite;
    box-shadow: 
        0 0 80px rgba(52, 161, 154, 0.4),
        0 0 120px rgba(7, 25, 82, 0.3),
        inset 0 0 60px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-container:hover {
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    box-shadow: 
        0 0 100px rgba(52, 161, 154, 0.6),
        0 0 150px rgba(7, 25, 82, 0.4),
        inset 0 0 80px rgba(255, 255, 255, 0.15);
}

@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.video-mask {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-container:hover .video-mask {
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
}

/* Video Overlay Effect */
.video-mask::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(52, 161, 154, 0.1) 0%,
        transparent 30%,
        transparent 70%,
        rgba(7, 25, 82, 0.15) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Shimmer Effect */
.video-mask::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: shimmer 6s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) rotate(0deg); }
    50% { transform: translateX(100%) rotate(180deg); }
}

/* Floating Animation */
.video-wrapper {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.btn-main {
    background-color: #0dcaf0;
    color: #fff !important;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
display: inline-block;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
    text-decoration: none;
}

.btn-main:hover {
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.5);
}

/* Partner Slider */
.slider-area {
    background: #fff;
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.partner-track-wrapper {
    overflow-x: hidden;
}

.track {
    display: flex;
    width: calc(250px * 12);
    animation: scroll 35s linear infinite;
}

.logo-item {
    width: 250px;
    padding: 0 40px;
    opacity: 0.6;
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 6));
    }
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #071952 0%, #35a29f 100%);
    padding: 80px 0;
    color: #fff;
}

.stat-card {
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Hizmet Kartları */
.s-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 50px 30px;
    text-align: center;
    height: 100%;
}

.s-card:hover {
    border-color: var(--prm);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.s-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    position: relative;
    border: 1px solid var(--border);
}

.testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.quote-icon {
    font-size: 3rem;
    color: var(--prm);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 30px;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border);
}

.author-info h6 {
    margin: 0;
    font-weight: 700;
    color: var(--dark);
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
}

/* FAQ Section */
.faq-section {
    background: var(--gray-bg);
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 15px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--prm);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark);
    user-select: none;
}

.faq-question:hover {
    color: var(--prm);
}

.faq-icon {
    font-size: 1.3rem;
color: var(--prm);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
padding: 0 30px;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer p {
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

/* Trust Badges */
.trust-section {
    background: #fff;
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-badge {
    text-align: center;
    padding: 30px 20px;
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: var(--gray-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #35a29f;
    border: 2px solid var(--border);
}

.trust-badge h6 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.trust-badge p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Ödeme Kartları */
.p-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid var(--border);
    height: 100%;
position: relative;
}

.p-card:hover {
    border-color: var(--prm);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.p-logo {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.p-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.feat-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 8px;
    color: #64748b;
}

.feat-item i {
    color: #10b981;
    margin-right: 10px;
}

.badge-new {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f0f7ff;
    color: var(--prm);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

/* CTA */
.cta-gradient {
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    border-radius: 30px;
    padding: 80px 40px;
    color: #fff;
    text-align: center;
}

@media (max-width: 991px) {
    .hero-custom {
        text-align: center;
    }

    .video-wrapper {
        margin-top: 40px;
    }

    .video-container {
        border-radius: 40px;
        max-width: 400px;
        margin: 0 auto;
    }

    .video-mask {
        border-radius: 40px;
    }

    .video-container:hover,
    .video-container:hover .video-mask {
        border-radius: 35px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-py .container {
        overflow-x: hidden;
    }
}

.text-info {
    color: #35a29f !important;
}
