/* ========== GENEL AYARLAR ========== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== BUTONLAR ========== */

.btn-primary {
    background: #8B5CF6;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.btn-outline {
    background: transparent;
    color: #8B5CF6;
    border: 2px solid #8B5CF6;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #8B5CF6;
    color: white;
}

.btn-cta {
    background: white;
    color: #8B5CF6;
    border: none;
    padding: 15px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #f9fafb;
    transform: translateY(-2px);
}

/* ========== HEADER ========== */

.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: -4px;
}

.logo-text p {
    font-size: 14px;
    color: #6b7280;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #8B5CF6;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone {
    color: #8B5CF6;
    font-weight: 500;
    font-size: 14px;
}

.mobile-menu-btn {
    display: none;
    background: #8B5CF6;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: #7C3AED;
}

/* ========== HERO SECTION ========== */

.hero {
    background: linear-gradient(135deg, #F3E8FF 0%, #FAF5FF 100%);
    padding: 80px 0;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.1;
    margin-bottom: 24px;
}

.text-green {
    color: #8B5CF6;
}

.hero-description {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.feature {
    color: #6b7280;
    font-weight: 500;
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}

.hero-card:hover {
    transform: rotate(0deg);
}

.card-content {
    text-align: center;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 8px;
}

.hero-card p {
    color: #6b7280;
}

.experience-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #A78BFA;
    color: #581C87;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    transform: rotate(12deg);
}

/* ========== SERVICES SECTION - 3D CAROUSEL ========== */

.services {
    padding: 80px 0;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* 3D Carousel Container */
.carousel-3d-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.carousel-3d-wrapper {
    perspective: 1200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.carousel-3d {
    position: relative;
    width: 100%;
    height: 400px;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    max-width: 90%;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1) rotateY(0deg);
}

.carousel-slide.prev {
    opacity: 0.5;
    z-index: 5;
    transform: translate(-150%, -50%) scale(0.75) rotateY(20deg);
}

.carousel-slide.next {
    opacity: 0.5;
    z-index: 5;
    transform: translate(50%, -50%) scale(0.75) rotateY(-20deg);
}

.slide-content {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.carousel-slide.active .slide-content:hover {
    box-shadow: 0 25px 80px rgba(139, 92, 246, 0.3);
    transform: translateY(-5px);
}

/* Video Slide */
.video-slide .video-container-3d {
    position: relative;
    padding-bottom: 50%;
    height: 0;
    overflow: hidden;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.play-button {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.video-placeholder p {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 8px;
}

.video-placeholder span {
    font-size: 15px;
    opacity: 0.9;
}

/* Image Slide */
.image-slide {
    position: relative;
}

.image-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.slide-info {
    padding: 24px;
    text-align: center;
    background: white;
}

.slide-info h3 {
    font-size: 20px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 8px;
}

.slide-info p {
    color: #6b7280;
    font-size: 15px;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #DDD6FE;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn span {
    font-size: 32px;
    font-weight: bold;
    color: #8B5CF6;
    line-height: 1;
}

.carousel-btn:hover {
    background: #8B5CF6;
    border-color: #8B5CF6;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.carousel-btn:hover span {
    color: white;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #DDD6FE;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #8B5CF6;
    width: 32px;
    border-radius: 6px;
}

/* ========== ABOUT SECTION ========== */

.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    background: #F3E8FF;
    color: #581C87;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 24px;
}

.about-left h2 {
    font-size: 36px;
    font-weight: bold;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-left p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.badge-outline {
    border: 1px solid #DDD6FE;
    color: #581C87;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 3px solid #DDD6FE;
}

.stat-card:hover {
    box-shadow: 0 12px 24px rgba(139, 92, 246, 0.15);
    border-top-color: #8B5CF6;
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #8B5CF6;
    margin-bottom: 4px;
}

.stat-desc {
    font-size: 12px;
    color: #6b7280;
}

/* ========== CONTACT SECTION ========== */

.contact {
    padding: 80px 0;
    background: #f9fafb;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.contact-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid #DDD6FE;
}

.contact-card:hover {
    box-shadow: 0 12px 24px rgba(139, 92, 246, 0.15);
    border-top-color: #8B5CF6;
    transform: translateY(-4px);
}

.contact-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: inline-block;
    padding: 12px;
    background: #F3E8FF;
    border-radius: 12px;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 8px;
}

.contact-card p {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-card span {
    color: #6b7280;
    font-size: 14px;
}

.call-to-action {
    text-align: center;
}

.cta-card {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
    padding: 48px 32px;
    border-radius: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.cta-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-card h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 12px;
}

.cta-card p {
    margin-bottom: 24px;
    opacity: 0.9;
}

/* ========== FOOTER ========== */

.footer {
    background: #202b39;
    color: white;
    padding: 30px 0;
}

.footer-simple {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-simple p {
    color: #9ca3af;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

/* ========== MOBİL UYUMLULUK ========== */

@media (max-width: 768px) {
    .header-content {
        position: relative;
    }

    .logo-text h1 {
        font-size: 18px;
    }

    .logo-text p {
        font-size: 12px;
    }

    .logo-image {
        width: 45px;
        height: 45px;
    }

    .header-right {
        gap: 12px;
    }

    .header-right .phone {
        display: none;
    }

    .header-right .btn-primary {
        display: block;
        padding: 10px 20px;
        font-size: 14px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 40px);
        max-width: 400px;
        flex-direction: column;
        background: white;
        box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
        padding: 20px;
        border-radius: 16px;
        gap: 0;
        margin-top: 10px;
        border: 2px solid #DDD6FE;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 16px 20px;
        border-radius: 12px;
        text-align: center;
        background: #F3E8FF;
        margin-bottom: 12px;
        font-weight: 600;
        color: #581C87;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .nav a:last-child {
        margin-bottom: 0;
    }

    .nav a:hover {
        background: #8B5CF6;
        color: white;
        border-color: #7C3AED;
        transform: scale(1.02);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons button {
        width: 100%;
    }

    .hero-features {
        justify-content: center;
        font-size: 14px;
    }

    .hero-right {
        order: -1;
    }

    .carousel-3d-wrapper {
        min-height: 350px;
    }

    .carousel-3d {
        height: 350px;
    }

    .carousel-slide {
        width: 320px;
    }

    .video-slide .video-container-3d {
        padding-bottom: 60%;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .video-placeholder p {
        font-size: 18px;
    }

    .video-placeholder span {
        font-size: 13px;
        padding: 0 15px;
    }

    .image-slide img {
        height: 220px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
    }

    .carousel-btn span {
        font-size: 24px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-left h2 {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .footer-simple p {
        font-size: 14px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 40px 0;
    }

    .services,
    .about,
    .contact {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .about-left h2 {
        font-size: 24px;
    }

    .carousel-slide {
        width: 280px;
    }

    .footer-simple p {
        font-size: 12px;
        line-height: 1.4;
    }

    .cta-card {
        padding: 32px 20px;
    }

    .cta-card h3 {
        font-size: 20px;
    }

    .btn-cta {
        font-size: 16px;
        padding: 12px 24px;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(3deg);
    }
    50% {
        transform: translateY(-10px) rotate(3deg);
    }
}

.hero-card {
    animation: float 3s ease-in-out infinite;
}

.hero-card:hover {
    animation-play-state: paused;
}

html {
    scroll-behavior: smooth;
}

* {
    outline: none !important;
}

button:focus,
a:focus {
    outline: none !important;
    box-shadow: none !important;
}