/* technova-card.css - Technova Medya Dijital Kartvizit - HAREKETLİ VERSİYON */

/* Font Awesome CDN */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

/* HAREKETLİ YILDIZLI ARKAPLAN */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    background: #FFFFFF;
    border-radius: 50%;
    animation: twinkle var(--duration) ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: var(--opacity); transform: scale(1.5); }
}

/* Altın yıldızlar */
.gold-star {
    position: absolute;
    color: #FFD700;
    font-size: var(--size);
    animation: floatGold var(--duration) ease-in-out infinite;
    opacity: 0.5;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    z-index: 1;
}

@keyframes floatGold {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

/* Kayan yıldızlar */
.shooting-star {
    position: absolute;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, #FFFFFF);
    transform: rotate(45deg);
    animation: shoot 4s linear infinite;
    opacity: 0;
    z-index: 2;
}

@keyframes shoot {
    0% {
        transform: translateX(0) translateY(0) rotate(45deg);
        opacity: 1;
    }
    100% {
        transform: translateX(-1000px) translateY(1000px) rotate(45deg);
        opacity: 0;
    }
}

/* ANA KART */
.technova-card-container {
    width: 100%;
    max-width: 550px;
    position: relative;
    z-index: 10;
}

.technova-card {
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
    border-radius: 30px;
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.9),
        0 0 0 2px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.1);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.technova-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FFD700, #FFFFFF, #FFD700, transparent);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: scanLine 8s linear infinite;
    z-index: 15;
}

@keyframes scanLine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.technova-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05), transparent 70%);
    pointer-events: none;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

/* Header Bölümü */
.card-header {
    padding: 50px 40px 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.card-header::before {
    content: '✦';
    position: absolute;
    top: -30px;
    left: -30px;
    font-size: 8rem;
    color: rgba(255, 215, 0, 0.1);
    transform: rotate(15deg);
    animation: rotateSlow 20s linear infinite;
}

.card-header::after {
    content: '✧';
    position: absolute;
    bottom: -50px;
    right: -30px;
    font-size: 10rem;
    color: rgba(255, 215, 0, 0.1);
    transform: rotate(-10deg);
    animation: rotateSlow 25s linear infinite reverse;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-area {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.company-logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFD700;
    box-shadow: 
        0 0 40px rgba(255, 215, 0, 0.3),
        inset 0 0 20px rgba(255, 215, 0, 0.2);
    transition: all 0.5s ease;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 70px #FFD700;
    }
}

.company-logo:hover {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 0 60px #FFD700;
}

.company-info h1 {
    font-size: 2.5rem;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    text-shadow: 0 2px 15px rgba(255, 215, 0, 0.3);
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 2px 15px rgba(255, 215, 0, 0.3);
    }
    50% {
        text-shadow: 0 2px 30px #FFD700;
    }
}

.company-info h1 span {
    color: #FFD700;
    font-weight: 800;
}

.company-info p {
    font-size: 1.1rem;
    color: #CCCCCC;
    font-weight: 400;
    letter-spacing: 2px;
}

/* İletişim Grid */
.contact-grid {
    padding: 40px 30px;
    display: grid;
    gap: 15px;
}

.card-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 215, 0, 0.15);
    background: rgba(255, 215, 0, 0.02);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.8s ease;
}

.card-item:hover::before {
    left: 100%;
}

.card-item:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: #FFD700;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.5),
        0 0 0 1px #FFD700,
        0 0 30px rgba(255, 215, 0, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    border: 1px solid #FFD700;
    box-shadow: 
        0 5px 20px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 215, 0, 0.2);
}

.card-item:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    background: #FFD700;
    box-shadow: 
        0 8px 30px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.card-icon i {
    font-size: 1.6rem;
    color: #FFD700;
    transition: all 0.4s ease;
}

.card-item:hover .card-icon i {
    color: #000000;
    transform: rotate(360deg);
}

.card-icon.whatsapp {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
}

.card-icon.instagram {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
}

.card-content {
    flex: 1;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-title {
    display: block;
    font-size: 1.2rem;
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
}

.card-subtitle {
    display: block;
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.card-item:hover .card-title {
    color: #FFD700;
    text-shadow: 0 0 15px #FFD700;
}

.card-item:hover .card-subtitle {
    color: #FFFFFF;
}

/* Kişiler Grid */
.persons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 15px 0;
}

.person-item {
    background: rgba(255, 215, 0, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 20px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.4s ease;
}

.person-item:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.1);
    background: rgba(255, 215, 0, 0.05);
}

.person-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 10px;
}

.person-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1rem;
    margin: 12px 0;
    padding: 8px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    transition: all 0.3s;
}

.person-phone i {
    color: #FFD700;
    font-size: 1rem;
}

.person-phone:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
}

.person-wa {
    display: inline-block;
    background: #25D366;
    color: #FFFFFF;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid #25D366;
    transition: all 0.3s;
}

.person-wa:hover {
    background: transparent;
    color: #25D366;
    transform: scale(1.05);
}

/* Sosyal Medya Grid */
.social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 10px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #FFD700;
    border-radius: 50px;
    color: #FFD700;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.4s ease;
    min-width: 140px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.social-link:hover::before {
    width: 300%;
    height: 300%;
}

.social-link:hover {
    background: #FFD700;
    color: #000000;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.social-link i {
    font-size: 1.2rem;
    transition: all 0.4s ease;
}

.social-link:hover i {
    transform: rotate(360deg);
}

/* Hizmet Etiketleri */
.tags-section {
    margin: 20px 0;
}

.tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tag {
    padding: 8px 20px;
    background: rgba(255, 215, 0, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50px;
    color: #FFD700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    animation: tagFloat 3s ease-in-out infinite;
}

.tag:nth-child(1) { animation-delay: 0s; }
.tag:nth-child(2) { animation-delay: 0.2s; }
.tag:nth-child(3) { animation-delay: 0.4s; }
.tag:nth-child(4) { animation-delay: 0.6s; }
.tag:nth-child(5) { animation-delay: 0.8s; }
.tag:nth-child(6) { animation-delay: 1s; }

@keyframes tagFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.tag:hover {
    background: #FFD700;
    color: #000000;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.tag i {
    margin-right: 5px;
    font-size: 0.8rem;
}

/* Adres Bölümü */
.address-section {
    padding: 30px 40px;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.address-icon {
    color: #FFD700;
    font-size: 1.3rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.address-text p {
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Footer */
.card-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    font-size: 0.9rem;
    color: #CCCCCC;
    background: rgba(0, 0, 0, 0.3);
}

.card-footer i {
    color: #FFD700;
    margin: 0 3px;
    animation: pulse 1.5s ease infinite;
}

.card-footer .fa-heart {
    color: #ff4444;
    animation: heartbeat 1.5s ease infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.1);
    }
}

/* Animasyonlar */
.technova-card {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: fadeInUp 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.card-item {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInRight 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.card-item:nth-child(1) { animation-delay: 0.1s; }
.card-item:nth-child(2) { animation-delay: 0.2s; }
.card-item:nth-child(3) { animation-delay: 0.3s; }
.card-item:nth-child(4) { animation-delay: 0.4s; }
.card-item:nth-child(5) { animation-delay: 0.5s; }
.card-item:nth-child(6) { animation-delay: 0.6s; }
.card-item:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Tıklama Efekti */
.card-item:active {
    transform: scale(0.98) translateY(0);
    transition: transform 0.1s ease;
}

/* Responsive */
@media screen and (max-width: 600px) {
    body {
        padding: 15px;
    }
    
    .technova-card-container {
        max-width: 100%;
    }
    
    .card-header {
        padding: 40px 25px 25px;
    }
    
    .company-logo {
        width: 90px;
        height: 90px;
    }
    
    .company-info h1 {
        font-size: 2rem;
    }
    
    .company-info p {
        font-size: 1rem;
    }
    
    .contact-grid {
        padding: 30px 20px;
        gap: 12px;
    }
    
    .card-item {
        padding: 18px;
        gap: 15px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-icon i {
        font-size: 1.3rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-subtitle {
        font-size: 0.95rem;
    }
    
    .persons-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .social-link {
        width: 100%;
        min-width: auto;
    }
    
    .address-section {
        padding: 25px 20px;
    }
}

@media screen and (max-width: 380px) {
    .company-info h1 {
        font-size: 1.8rem;
    }
    
    .card-item {
        padding: 15px;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
    }
    
    .card-icon i {
        font-size: 1.2rem;
    }
    
    .tag {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

/* Özel scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFC107;
}

/* Selection color */
::selection {
    background: #FFD700;
    color: #000000;
}