/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Genel Stiller */
:root {
    --primary-color: #4f46e5;
    --secondary-color: #4338ca;
    --gradient-start: #4f46e5;
    --gradient-end: #6366f1;
    --text-color: #1f2937;
    --light-bg: #f3f4f6;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Top Bar Stilleri */
.top-bar {
    font-size: 0.85rem;
    font-weight: 500;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end)) !important;
    letter-spacing: 0.3px;
}

.top-bar .container {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.top-bar a {
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
}

.top-bar a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.top-bar i {
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    align-items: center;
}

.social-links a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive Top Bar */
@media (max-width: 768px) {
    .top-bar {
        font-size: 0.8rem;
    }

    .top-bar .container {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .top-bar .col-lg-6 {
        text-align: center !important;
    }

    .top-bar .d-flex {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 0.5rem;
    }
}

/* Navbar Yeni Stiller */
.navbar {
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar-logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.02);
}

.navbar-toggler {
    width: 40px;
    height: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    padding: 1rem 1.25rem !important;
    transition: all 0.3s ease;
    position: relative;
    color: var(--text-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    opacity: 0;
}

.nav-link:hover::after {
    width: 60%;
    opacity: 1;
}

/* Telefon Butonu Stilleri */
.nav-phone {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.phone-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.phone-icon i {
    color: white;
    font-size: 1rem;
}

.phone-text {
    display: flex;
    flex-direction: column;
}

.phone-text small {
    font-size: 0.75rem;
    color: var(--text-color);
    opacity: 0.7;
    font-weight: 500;
}

.phone-text span {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 600;
}

.nav-phone:hover .phone-icon {
    transform: scale(1.05) rotate(10deg);
}

/* Teklif Al Butonu */
.btn-primary.rounded-pill {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border: none;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
    transition: all 0.3s ease;
}

.btn-primary.rounded-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.3);
}

/* Responsive Navbar */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-logo {
        height: 50px;
    }

    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
        text-align: center;
    }

    .nav-cta {
        margin-top: 1rem;
        justify-content: center;
    }

    .btn-primary.rounded-pill {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Hero Section Stilleri */
.hero-section {
    position: relative;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://images.unsplash.com/photo-1609709295948-17d77cb2a69b?ixlib=rb-4.0.3') center/cover;
    min-height: 100vh;
    overflow: hidden;
    padding: 120px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-image-wrapper {
    position: relative;
    padding: 20px;
}

.hero-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: float 4s ease-in-out infinite;
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
    animation: float 3s ease-in-out infinite;
}

.experience-badge span {
    display: block;
}

.moving-truck {
    position: absolute;
    left: -100px;
    bottom: 50px;
    animation: moveRightToLeft 15s linear infinite;
    z-index: 2;
}

@keyframes moveRightToLeft {
    from {
        left: -100px;
    }
    to {
        left: calc(100% + 100px);
    }
}

/* Buton Stilleri */
.btn {
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-end), var(--gradient-start));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary *, .btn-outline-primary * {
    position: relative;
    z-index: 1;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-color: transparent;
}

/* Modern Hizmetler Kartları */
.services-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.services-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
    opacity: 0;
    transition: all 0.4s ease;
}

.services-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.services-card:hover::after {
    opacity: 1;
}

.services-card .card-body {
    padding: 2.5rem !important;
}

.services-card .icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.services-card:hover .icon-wrapper {
    transform: scale(1.05) rotate(3deg);
}

.services-card .icon-wrapper::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: all 0.6s ease;
}

.services-card:hover .icon-wrapper::before {
    left: 100%;
}

.services-card .icon-wrapper i {
    font-size: 1.75rem;
    color: white;
    position: relative;
    z-index: 1;
}

.services-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.services-card .card-text {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.services-card .btn-outline-primary {
    border-width: 1.5px;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.services-card .btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-color: transparent;
    transform: translateY(-2px);
}

/* Hizmetler Section Genel Stil */
#hizmetler {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 6rem 0;
}

#hizmetler .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
}

#hizmetler .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    border-radius: 3px;
}

/* Animasyon Efektleri */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Modern Hakkımızda Bölümü */
#hakkimizda {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 8rem 0;
    overflow: hidden;
}

#hakkimizda .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

#hakkimizda .lead {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-text {
    padding-right: 3rem;
}

.about-features {
    margin-top: 3rem;
}

.about-feature {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-right: 1.25rem;
    transition: all 0.3s ease;
}

.about-feature:hover i {
    transform: rotate(10deg);
}

.about-feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.about-feature-text p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

/* Modern Resim Galerisi */
.about-images {
    position: relative;
    height: 600px;
}

.about-image {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image-1 {
    width: 300px;
    height: 450px;
    top: 0;
    right: 150px;
    z-index: 2;
}

.about-image-2 {
    width: 300px;
    height: 450px;
    top: 150px;
    right: 0;
    z-index: 1;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

@media (max-width: 991.98px) {
    .about-text {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .about-images {
        height: 500px;
        margin-top: 2rem;
    }

    .about-image-1 {
        width: 250px;
        height: 375px;
        right: 120px;
    }

    .about-image-2 {
        width: 250px;
        height: 375px;
        right: 0;
    }
}

@media (max-width: 767.98px) {
    .about-images {
        height: 400px;
    }

    .about-image-1 {
        width: 200px;
        height: 300px;
        right: 100px;
    }

    .about-image-2 {
        width: 200px;
        height: 300px;
        right: 0;
    }
}

/* Modern İletişim Formu Stilleri */
#iletisim {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 8rem 0;
}

#iletisim .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
}

#iletisim .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    border-radius: 3px;
}

.contact-form {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    border: none;
    border-bottom: 2px solid #e5e7eb;
    border-radius: 0;
    padding: 0.8rem 0;
    font-size: 1rem;
    background: transparent;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
    background: linear-gradient(0deg, rgba(79, 70, 229, 0.03) 0%, transparent 100%);
}

.contact-form .form-control::placeholder {
    color: #9ca3af;
    font-size: 0.95rem;
}

.contact-form .form-floating {
    margin-bottom: 1.5rem;
}

.contact-form .form-floating > label {
    color: #6b7280;
    padding-left: 0;
    font-size: 0.95rem;
}

.contact-form .form-floating > .form-control:focus ~ label,
.contact-form .form-floating > .form-control:not(:placeholder-shown) ~ label {
    transform: translateY(-1.5rem) scale(0.85);
    color: var(--primary-color);
}

.contact-form select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 1.5em;
}

.contact-form textarea.form-control {
    min-height: 120px;
    resize: none;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

.contact-form .btn-primary::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: all 0.6s ease;
}

.contact-form .btn-primary:hover::before {
    left: 100%;
}

/* İletişim Bilgileri Kartı */
.contact-info-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    transform: rotate(10deg);
}

.contact-icon i {
    font-size: 1.25rem;
    color: white;
}

.contact-info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-info-content p, 
.contact-info-content a {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-content a:hover {
    color: var(--primary-color);
}

.contact-social {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.contact-social h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    transform: translateY(-3px);
}

/* İkonlar */
.text-primary {
    color: var(--primary-color) !important;
}

.fa-3x {
    margin-bottom: 1.5rem;
}

/* Form Elemanları */
.form-control {
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.1);
}

.card, .hero-section h1, .hero-section p {
    animation: fadeIn 1s ease-out forwards;
}

/* Hero Section Animasyon Stilleri */
.animation-wrapper {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.moving-elements {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
}

/* Evler */
.house-container {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 50px;
}

.house {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.house i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.house span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

.from-house {
    animation: fromHouseFloat 3s ease-in-out infinite;
}

.to-house {
    animation: toHouseFloat 3s ease-in-out infinite;
}

/* Taşınan Eşyalar */
.moving-items {
    position: absolute;
    width: 100%;
    height: 100%;
}

.item {
    position: absolute;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.sofa {
    top: 40%;
    left: 20%;
    animation: moveItem1 5s ease-in-out infinite;
}

.table {
    top: 60%;
    left: 40%;
    animation: moveItem2 4s ease-in-out infinite;
}

.box {
    top: 30%;
    right: 30%;
    animation: moveItem3 6s ease-in-out infinite;
}

.tv {
    top: 50%;
    right: 20%;
    animation: moveItem4 5.5s ease-in-out infinite;
}

/* Kamyon */
.truck-container {
    position: absolute;
    bottom: 50px;
    width: 100%;
}

.truck {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: inline-block;
    animation: moveTruck 8s ease-in-out infinite;
}

.truck i {
    font-size: 3rem;
    color: var(--primary-color);
}

/* Animasyonlar */
@keyframes fromHouseFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

@keyframes toHouseFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

@keyframes moveItem1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(20px, -20px) rotate(5deg);
    }
}

@keyframes moveItem2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-15px, -25px) rotate(-5deg);
    }
}

@keyframes moveItem3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-20px, -15px) rotate(8deg);
    }
}

@keyframes moveItem4 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(15px, -20px) rotate(-8deg);
    }
}

@keyframes moveTruck {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(50px);
    }
}

/* Tecrübe Rozeti Güncellemesi */
.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 15px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

.experience-badge .h2 {
    font-size: 2rem;
    margin: 0;
    line-height: 1;
}

.experience-badge .small {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Modern Taşınma Animasyonu */
.moving-animation {
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(180deg, #e8f4ff 0%, #ffffff 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.scene {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Binalar */
.buildings {
    position: absolute;
    bottom: 80px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 60px;
}

.building {
    width: 160px;
    height: 220px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.building::before {
    content: '';
    position: absolute;
    top: -25px;
    width: 100%;
    height: 25px;
    background: #4338ca;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.window {
    width: 30px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    position: absolute;
    border-radius: 6px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.building-1 .window:nth-child(1) { top: 40px; left: 30px; }
.building-1 .window:nth-child(2) { top: 40px; right: 30px; }
.building-1 .window:nth-child(3) { top: 100px; left: 30px; }
.building-1 .window:nth-child(4) { top: 100px; right: 30px; }

.building-2 .window:nth-child(1) { top: 40px; left: 30px; }
.building-2 .window:nth-child(2) { top: 40px; right: 30px; }
.building-2 .window:nth-child(3) { top: 100px; left: 30px; }
.building-2 .window:nth-child(4) { top: 100px; right: 30px; }

.door {
    width: 40px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 6px 6px 0 0;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Yol */
.road {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(180deg, #2c3e50, #34495e);
}

.line {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.7);
    animation: moveLine 1s linear infinite;
}

/* Kamyon */
.truck-wrapper {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: truckMove 12s linear infinite;
}

.truck {
    width: 220px;
    height: 120px;
    position: relative;
}

.cabin {
    width: 80px;
    height: 70px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    border-radius: 12px;
    position: absolute;
    bottom: 0;
    left: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cabin::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 25px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
}

.cargo {
    width: 140px;
    height: 90px;
    background: white;
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cargo-items {
    position: relative;
    height: 100%;
    animation: cargoShake 0.5s ease-in-out infinite;
    background: linear-gradient(45deg, rgba(79, 70, 229, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
}

.wheel {
    width: 30px;
    height: 30px;
    background: #1a1a1a;
    border: 4px solid #333;
    border-radius: 50%;
    position: absolute;
    bottom: -15px;
    animation: wheelRotate 1s linear infinite;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.wheel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    background: #333;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.wheel-front { left: 20px; }
.wheel-middle { left: 120px; }
.wheel-back { right: 20px; }

/* Taşıyıcılar */
.movers {
    position: absolute;
    bottom: 80px;
    display: flex;
    gap: 150px;
    animation: moversWork 8s linear infinite;
}

.mover {
    width: 40px;
    height: 80px;
    position: relative;
}

.body {
    width: 100%;
    height: 40px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    border-radius: 8px;
    position: absolute;
    top: 20px;
}

.head {
    width: 25px;
    height: 25px;
    background: #4f46e5;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.arms {
    width: 50px;
    height: 8px;
    background: #4f46e5;
    position: absolute;
    top: 35px;
    left: -5px;
    animation: armsMove 1s ease-in-out infinite;
    border-radius: 4px;
}

.legs {
    width: 30px;
    height: 25px;
    background: #4f46e5;
    position: absolute;
    bottom: 0;
    left: 5px;
    animation: legsMove 1s ease-in-out infinite;
    border-radius: 4px;
}

/* Eşyalar */
.furniture-items {
    position: absolute;
    bottom: 90px;
    display: flex;
    gap: 30px;
    animation: furnitureMove 8s linear infinite;
}

.furniture-item {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    position: relative;
}

.furniture-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 4px;
}

/* Animasyonlar */
@keyframes moveLine {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

@keyframes truckMove {
    0% { 
        transform: translateX(-150%) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    45% { 
        transform: translateX(0%) rotate(0deg);
    }
    50% {
        transform: translateX(0%) rotate(0deg);
    }
    55% {
        transform: translateX(0%) rotate(0deg);
    }
    90% {
        opacity: 1;
    }
    100% { 
        transform: translateX(150%) rotate(0deg);
        opacity: 0;
    }
}

@keyframes cargoShake {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-2px) rotate(0.5deg); }
    75% { transform: translateY(-1px) rotate(-0.5deg); }
}

@keyframes wheelRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes moversWork {
    0% { 
        transform: translateX(-50px) scaleX(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    45% { transform: translateX(100px) scaleX(1); }
    50% { transform: translateX(100px) scaleX(-1); }
    90% {
        opacity: 1;
    }
    100% { 
        transform: translateX(-50px) scaleX(-1);
        opacity: 0;
    }
}

@keyframes armsMove {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    75% { transform: rotate(-15deg); }
}

@keyframes legsMove {
    0%, 100% { transform: translateY(0) scaleY(1); }
    50% { transform: translateY(-3px) scaleY(0.95); }
}

@keyframes furnitureMove {
    0% { 
        transform: translateX(-100px) translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    40% { transform: translateX(50px) translateY(-30px); }
    60% { transform: translateX(150px) translateY(0); }
    90% {
        opacity: 1;
    }
    100% { 
        transform: translateX(300px) translateY(0);
        opacity: 0;
    }
}

/* Modern Footer Stilleri */
.footer {
    background: #4461F2;
    padding: 4rem 0 1rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
   
    background-color: #4461F2;
    padding: 5px;
    border-radius: 8px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-links h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    position: relative;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links ul li a i {
    margin-right: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-contact {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
}

.footer-contact h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.footer-contact-icon i {
    color: white;
    font-size: 0.9rem;
}

.footer-contact-text h5 {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.footer-contact-text p, 
.footer-contact-text a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-text a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

@media (max-width: 991.98px) {
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-links {
        margin-bottom: 2rem;
    }
} 