:root {
    --primary-color: #7046f5;
    --secondary-color: #f05cba;
    --dark-color: #1c1c28;
    --light-color: #f8f9fa;
    --text-color: #4a4a4a;
    --gradient-primary: linear-gradient(135deg, #7046f5, #f05cba);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Reset ve Temel Stiller */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 76px;
    /* Navbar yüksekliğine göre ayarlandı */
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
    position: relative;
}

.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Navbar Stili - Düzeltildi */
.navbar {
    padding: 15px 0;
    background-color: var(--dark-color) !important;
    /* !important eklendi */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.navbar-dark {
    background-color: var(--dark-color) !important;
}

.navbar-dark .navbar-brand {
    color: #fff;
}

.navbar-dark .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
}

.navbar-logo {
    height: 30px;
    width: auto;
    margin-right: 10px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 600;
}

/* Hero Section - Tamamen Yenilendi */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-bottom: 150px;
    /* Wave shape için ekstra alan */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
    opacity: 0.1;
    z-index: 1;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
    pointer-events: none;
    /* Eklendi - tıklamaları geçirir */
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-section h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-section .highlight {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    padding: 0 8px;
    border-radius: 4px;
}

.hero-section .highlight::after {
    display: none;
}

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

.hero-buttons a {
    position: relative;
    z-index: 35;
    /* Her buton için bireysel z-index */
}

.hero-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 4;
}

/* Enhanced Hero Section Styles */
.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 40px;
    /* Butonlar için daha fazla boşluk */
}

.hero-image-container {
    margin-top: 20px;
    padding: 20px;
}

.hero-backdrop {
    position: absolute;
    top: 40%;
    /* Yukarı kaydırıldı: %50'den %40'a */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    /* Küçültüldü: %90'dan %70'e */
    height: 70%;
    /* Küçültüldü: %90'dan %70'e */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(35px);
    z-index: 0;
}

.hero-image {
    max-height: 400px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.hero-buttons .btn {
    border-radius: 50px;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Media queries for responsive design */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 100px 0 40px;
        min-height: auto;
    }

    .hero-buttons {
        justify-content: center;
    }
}

/* Z-index utility class */
.z-index-1 {
    z-index: 1;
}

/* About Section */
.about-img-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-img-container img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--gradient-primary);
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.experience-badge .number {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.section-title {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    font-weight: 700;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    bottom: 0;
    left: 0;
}

.section-title.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.skill-tag {
    background-color: rgba(112, 70, 245, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* App Section */
.featured-app-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.app-stats {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.stat-text {
    display: block;
    font-size: 0.8rem;
    color: var(--text-color);
}

.app-logo-large {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    background-color: rgba(112, 70, 245, 0.1);
    padding: 8px 15px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.feature-item i {
    font-size: 1rem;
    color: var(--primary-color);
    margin-right: 8px;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Benefit Cards */
.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    border-radius: 50%;
    background: var(--gradient-primary);
}

.benefit-card h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Contact Section */
.contact-form-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.95));
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.contact-form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.contact-info-container {
    border-radius: 15px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--gradient-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon-wrapper {
    margin-right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) rotate(5deg);
}

.contact-icon {
    font-size: 1.4rem;
    color: white;
}

.contact-details h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-link {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.contact-link:hover {
    color: white;
    text-decoration: underline !important;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-link {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-5px);
    color: white;
}

.social-link.github:hover {
    background-color: #333;
}

.social-link.google-play:hover {
    background-color: #01875f;
}

.social-link.linkedin:hover {
    background-color: #0077b5;
}

.social-link.twitter:hover {
    background-color: #1da1f2;
}

/* Media queries for contact section */
@media (max-width: 991px) {
    .contact-info-container {
        margin-top: 2rem;
    }

    .contact-form-container,
    .contact-info-container {
        padding: 30px;
    }
}

@media (max-width: 576px) {

    .contact-form-container,
    .contact-info-container {
        padding: 25px 20px;
    }

    .social-links {
        justify-content: center;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .contact-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .contact-icon {
        font-size: 1.2rem;
    }
}

/* Contact section color and spacing improvements */
#contact.bg-light {
    background-color: #f3f4ff !important;
    /* Çok hafif mor tonu */
    background-image: radial-gradient(circle at 10% 20%, rgba(112, 70, 245, 0.05) 0%, rgba(250, 250, 253, 0.2) 90%);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    padding: 20px 0;
    color: white;
}

.back-to-top {
    opacity: 0.7;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    opacity: 1;
    transform: translateY(-5px);
}

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    position: relative;
}

.page-header h1 {
    color: white;
    margin-bottom: 10px;
}

.page-header .lead {
    color: rgba(255, 255, 255, 0.9);
}

/* App Cards */
.app-card {
    border-radius: 15px;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.app-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-img-container {
    position: relative;
}

.app-card .card-img-top {
    height: 220px;
    object-fit: contain;
    background-color: #f8f9fa;
    padding: 20px;
}

.app-logo-container {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 10;
    background-color: white;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.app-logo-overlay {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.app-card .card-body {
    padding: 25px;
}

.app-card .card-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.app-card .card-text {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.app-tags .badge {
    font-weight: 500;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 20px;
}

.app-card .card-footer {
    background-color: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px;
}

/* Woo Specific Styles */
.feature-card {
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon-container {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--gradient-primary);
}

.feature-icon {
    font-size: 2rem;
    color: white;
}

.screenshot-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.screenshot-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
}

.testimonial-card {
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.7;
}

.testimonial-author h5 {
    font-weight: 600;
    margin-bottom: 0;
}

.rating i {
    color: #ffb400;
    font-size: 1.1rem;
}

/* Accordion */
.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(112, 70, 245, 0.25);
}

/* Woo Showcase Styles */
.app-showcase {
    border-radius: 20px;
    transition: transform 0.3s;
    overflow: hidden;
}

.app-logo-large {
    transition: transform 0.3s;
}

.app-showcase:hover .app-logo-large {
    transform: rotate(15deg);
}

.feature-icon-small {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.app-screenshots-container {
    transition: all 0.3s;
}

.main-screenshot {
    position: relative;
    z-index: 10;
    transition: transform 0.3s;
}

.app-screenshots-container:hover .main-screenshot {
    transform: translateY(-10px);
}

.gallery-img {
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 20;
    position: relative;
}

/* Form Alert Styles */
.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    animation: fadeInDown 0.5s ease-in-out;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Alert Styles - Enhanced */
.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    animation: fadeInDown 0.5s ease-in-out;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.alert.show {
    opacity: 1;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-left: 4px solid #dc3545;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Submit Button Active State */
.btn-primary:active,
.btn-primary:focus,
.btn-primary:disabled {
    color: white;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    opacity: 0.8;
}

/* Submit Button Transitions */
#submitButton {
    position: relative;
    transition: all 0.3s ease;
}

#submitButton:disabled {
    background-color: var(--primary-color);
    opacity: 0.8;
}

#submitButton .spinner-border {
    transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }

    section {
        padding: 70px 0;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 130px 0 70px;
    }

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

    .hero-image {
        margin-top: 40px;
    }

    .section-title {
        font-size: 2rem;
    }

    .benefit-card,
    .app-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 120px 0 60px;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .app-features {
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .featured-app-image {
        margin-bottom: 30px;
    }

    .app-stats {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }

    .contact-info-item i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Mobil ve Responsive İyileştirmeler */
@media (max-width: 991px) {
    .hero-section {
        padding: 110px 0 60px;
        min-height: auto;
    }

    .hero-section h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .feature-card,
    .benefit-card {
        margin-bottom: 20px;
    }

    .app-showcase {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .app-logo-large {
        width: 50px;
        height: 50px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .gallery-img {
        transition: transform 0.2s;
    }

    .gallery-img:hover {
        transform: scale(1.1);
    }

    .contact-form-container,
    .contact-info-container {
        padding: 25px;
    }

    .social-link {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.1rem;
    }

    .navbar-logo {
        height: 25px;
    }

    .hero-section {
        padding: 100px 0 50px;
    }

    .hero-section h1 {
        font-size: 1.9rem;
    }

    .hero-backdrop {
        opacity: 0.6;
    }

    .hero-buttons .btn {
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 10px;
    }

    .feature-icon-container {
        width: 65px;
        height: 65px;
    }

    .feature-icon {
        font-size: 1.5rem;
    }

    .screenshot-gallery .col-3 {
        padding: 3px;
    }

    .gallery-img {
        border-radius: 8px !important;
    }
}

/* Dokunmatik Cihazlar İçin İyileştirmeler */
@media (hover: none) {
    .btn:hover {
        transform: none;
        box-shadow: none;
    }

    .feature-card:hover,
    .benefit-card:hover,
    .social-link:hover,
    .gallery-img:hover {
        transform: none;
    }

    .btn:active {
        transform: scale(0.98);
    }

    .feature-card:active,
    .benefit-card:active,
    .social-link:active {
        transform: translateY(-5px);
    }

    .gallery-img:active {
        transform: scale(1.05);
    }
}

/* Masaüstü Görünüm İyileştirmeleri */
@media (min-width: 992px) {
    .hero-section {
        min-height: 90vh;
        padding-bottom: 120px;
        /* Artırıldı: Alt kısımda daha fazla boşluk bırakıldı */
    }

    .hero-image {
        max-height: 350px;
        animation: float 5s ease-in-out infinite;
        margin-top: -30px;
        /* Eklendi: Logo biraz yukarı çekildi */
    }

    .hero-content {
        position: relative;
        z-index: 5;
        /* z-index artırıldı */
        padding-bottom: 30px;
        /* Alt kenar boşluğu eklendi */
    }

    .hero-backdrop {
        top: 35%;
        /* Daha yukarı konumlandırıldı */
        width: 70%;
        /* Daraltıldı */
        height: 70%;
        /* Daraltıldı */
        opacity: 0.8;
        /* Hafif şeffaflık eklendi */
    }

    .feature-card:hover,
    .benefit-card:hover {
        transform: translateY(-15px);
    }

    .screenshot-gallery .col-3:hover {
        z-index: 10;
    }

    .app-showcase:hover {
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }
}

/* İyileştirilmiş Animasyonlar */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(3deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Purple Button Style */
.btn-purple {
    background: linear-gradient(135deg, #9C27B0 0%, #673AB7 100%);
    border: none;
    color: white;
}

.btn-purple:hover {
    background: linear-gradient(135deg, #8E24AA 0%, #5E35B1 100%);
    color: white;
}