:root {
    --navy-deep: #0c1b33;
    --navy-light: #1a2a44;
    --gold-metallic: #c5a059;
    --gold-light: #dfc18d;
    --accent-red: #d03038;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-700: #334155;
    --slate-900: #0f172a;
}

body {
    background-color: var(--slate-50);
    color: var(--slate-900);
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
h4,
.font-display {
    font-family: 'Playfair Display', serif;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.premium-card {
    background: white;
    border: 1px solid var(--slate-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-card:hover {
    border-color: var(--gold-metallic);
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(12, 27, 51, 0.1), 0 10px 10px -5px rgba(12, 27, 51, 0.04);
}

.gold-gradient {
    background: linear-gradient(135deg, var(--gold-metallic) 0%, var(--gold-light) 100%);
}

.navy-gradient {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-light) 100%);
}

.country-card:hover .hover-content {
    opacity: 1;
    transform: translateY(0);
}

.hover-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out;
}

.faq-answer.open {
    grid-template-rows: 1fr;
}

.faq-answer>div {
    overflow: hidden;
}


.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1) rotate(5deg);
    color: white;
}

.whatsapp-pulse {
    /* position: relative; */
}

.whatsapp-pulse::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}