/* 1. Genel Form Arkaplanı ve Yumuşaklık */
.iletisimbg {
    background-color: #f8f9fa;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* 2. Sol Panel: Glassmorphism (Cam Efekti) Dokunuşu */
.bg-navy {
    background-color: #001f3f;
    position: relative;
    overflow: hidden;
}

/* İkon kutularına derinlik katan cam efekti */
.bg-navy .icon-box {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    /* Arkayı hafif bulanıklaştırır */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.bg-navy .icon-box:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.05);
}

/* 3. Modern Seçim Kartları: Detaylı Etkileşim */
.select-card {
    background-color: #ffffff;
    cursor: pointer;
    border: 2px solid transparent !important;
    /* Seçilince belli olması için */
    position: relative;
}

/* Tıklandığında (Seçildiğinde) Değişecek Stil */
.btn-check:checked+.select-card {
    background-color: #ffffff !important;
    /* Arkaplan beyaz kalsın, kenarlık renklensin */
    color: #001f3f !important;
    border-color: #ffc107 !important;
    /* Turuncu kenarlık */
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 31, 63, 0.1) !important;
}

/* Seçilince ikonun rengini turuncu yap */
.btn-check:checked+.select-card i {
    color: #ffc107 !important;
    transform: scale(1.2);
    transition: all 0.3s ease;
}

/* Kartın sağ üstüne küçük bir onay işareti ekleyelim (CSS ile) */
.btn-check:checked+.select-card::after {
    content: "\f26e";
    /* Bootstrap Icons Check-circle kodu */
    font-family: "bootstrap-icons";
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ffc107;
    font-size: 1.2rem;
}

.select-card:hover {
    background-color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* 4. Form Inputları: Dinamik Odaklanma */
.iletisimbg .form-control,
.iletisimbg .form-select {
    border: 1px solid #eee !important;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.iletisimbg .form-control:focus {
    background-color: #ffffff;
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.1) !important;
    /* Hafif turuncu gölge */
    border-color: #ffc107 !important;
    /* Focus olduğunda kenarlık turuncu */
    transform: scale(1.01);
    /* Çok hafif büyüme efekti */
}

.transition-all {
    transition: all 0.3s ease;
}

.contact-hero {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.text-navy {
    color: #001f3f !important;
}

.text-orange {
    color: #ffc107 !important;
}

/* Ok Animasyonu */
.animated-arrow {
    animation: bounce 2s infinite;
    display: inline-block;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.hero-icon-animation {
    animation: float 3s ease-in-out infinite;
}

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

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

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


.hero-right-container {
    height: 350px;
}

.main-hero-circle {
    width: 180px;
    height: 180px;
    background: #001f3f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 8px solid rgba(255, 193, 7, 0.1);
}

.floating-card {
    position: absolute;
    width: 130px;
    transition: all 0.3s ease;
    z-index: 2;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation: floatY 4s infinite ease-in-out;
}

.card-2 {
    top: 60%;
    right: 5%;
    animation: floatY 5s infinite ease-in-out;
}

.card-3 {
    top: 15%;
    right: 15%;
    animation: floatY 3.5s infinite ease-in-out;
}

@keyframes floatY {

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

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

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
}

.hero-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    background-image: radial-gradient(#001f3f 1px, transparent 1px);
    background-size: 20px 20px;
    transform: translate(-50%, -50%);
    opacity: 0.1;
}

.glass-icon-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: rotateBox 10s infinite linear;
}

@keyframes rotateBox {
    0% {
        transform: rotate(0deg) translateY(0);
    }

    50% {
        transform: rotate(5deg) translateY(-10px);
    }

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